---
title: "Get News"
method: GET
path: "/v1/news"
tags: ["Instrument Data"]
---

# Get News

`GET /v1/news`

Retrieves news items with optional filtering by security IDs, time range, publisher,
type, and text query.

## Query parameters

- `page_size` integer
- `page_token` string, byte — Base64URL-encoded pagination token
- `from` string
- `to` string
- `include_publishers` string
- `exclude_publishers` string
- `news_type` 'NEWS' | 'PRESS_RELEASE' — News item classification.
- `search_query` string
- `instrument_ids` string[]
- `sectors` string[]

## Response `200`

News items

- object
  - `error` ApiError — A direct mapping of tonic::Status, for use in HTTP responses.
    - `code` integer, required — The error code is used to identify the nature of the error. It corresponds to an HTTP status code.
    - `details` object[]
    - `message` string, required — A human-readable message providing more details about the error.
  - `metadata` ResponseMetadata, required — Metadata for the response. This will always contain a request ID which can be used to identify the request to Clear Street for tracing, and optionally may include pagination data.
    - `next_page_token` string, byte, nullable — Base64URL-encoded pagination token
    - `page_number` integer, nullable — Pagination. Included if this was a GET (list) response
    - `previous_page_token` string, byte, nullable — Base64URL-encoded pagination token
    - `request_id` string, required — A unique ID for this request, generated upon ingestion of the request.
    - `total_items` integer, nullable — Total number of items available (not just in this page).
    - `total_pages` integer, nullable — Total number of pages available.
  - `data` NewsItem[], required
    - `image_url` string, nullable — URL of an associated image if provided by the source. When a null/undefined value is observed, it indicates that there is no available data.
    - `instruments` NewsInstrument[], required — Instruments associated with this news item.
      - `instrument_id` string, uuid, required — Instrument identifier.
      - `name` string, nullable — Instrument name/description, if available. When a null/undefined value is observed, it indicates that there is no available data.
      - `symbol` string, nullable — Trading symbol, if available. When a null/undefined value is observed, it indicates that there is no available data.
    - `news_type` 'NEWS' | 'PRESS_RELEASE', required — News item classification.
    - `published_at` string, date-time, required — The published date/time of the article in UTC.
    - `publisher` string, required — The publisher or newswire source.
    - `site` string, nullable — The primary domain/site of the publisher. When a null/undefined value is observed, it indicates that there is no available data.
    - `text` string, nullable — The full or excerpted article body. When a null/undefined value is observed, it indicates that there is no available data.
    - `title` string, required — The headline/title of the article.
    - `url` string, required — Canonical URL to the full article.

## Other responses

- `400` — Invalid query parameters
- `500` — Internal server error

---

[API](https://skmtc.net/clear-street/apis/clear-street-trading-api.md) · [All operations](https://skmtc.net/clear-street/apis/clear-street-trading-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clear-street/clear-street-trading-api/revisions/80e6fb2644e0/schema)
