---
title: "Get All Instrument Events"
method: GET
path: "/v1/instruments/events"
tags: ["Instrument Data"]
---

# Get All Instrument Events

`GET /v1/instruments/events`

List instrument events across all securities.

Retrieves all instrument events grouped by date.

## Query parameters

- `event_types` AllEventsEventType[]
- `instrument_ids` InstrumentIdOrSymbol[]
  - union — Instrument identifier: either an instrument identifier or a symbol (symbol for equities, OSI for options). Non-UUID inputs are resolved server-side.
    - string, uuid — Instrument identifier
    - string — Symbol (symbol for equities, OSI for options)
- `from_date` string
- `to_date` string

## Response `200`

Instrument events grouped by date

- 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` InstrumentAllEventsData, required — All-events payload grouped by date.
    - `event_dates` InstrumentEventsByDate[], required — Events grouped by date in descending order.
      - `date` string, date, required — Event date.
      - `events` InstrumentEventEnvelope[], required — Flat event envelopes for this date.
        - `dividend_event_data` InstrumentDividendEvent — Represents a dividend event for an instrument
          - `adjusted_dividend_amount` string, required — The adjusted dividend amount accounting for any splits.
          - `declaration_date` string, date, nullable — The declaration date of the dividend When a null/undefined value is observed, it indicates that there is no available data.
          - `dividend_amount` string, nullable — The dividend amount per share. When a null/undefined value is observed, it indicates that there is no available data.
          - `dividend_yield` string, nullable — The dividend yield as a percentage of the stock price. When a null/undefined value is observed, it indicates that there is no available data.
          - `ex_date` string, date, required — The day the stock starts trading without the right to receive that dividend.
          - `frequency` string, nullable — The frequency of the dividend payments (e.g., "Quarterly", "Annual"). When a null/undefined value is observed, it indicates that there is no available data.
          - `payment_date` string, date, nullable — The payment date is the date on which a declared stock dividend is scheduled to be paid. When a null/undefined value is observed, it indicates that there is no available data.
          - `record_date` string, date, nullable — The record date, set by a company's board of directors, is when a company compiles a list of shareholders of the stock for which it has declared a dividend. When a null/undefined value is observed, it indicates that there is no available data.
        - `earnings_event_data` InstrumentEarnings — Represents instrument earnings data
          - `date` string, date, required — The date when the earnings report was published
          - `eps_actual` string, nullable — The actual earnings per share (EPS) for the period When a null/undefined value is observed, it indicates that there is no available data.
          - `eps_estimate` string, nullable — The estimated earnings per share (EPS) for the period When a null/undefined value is observed, it indicates that there is no available data.
          - `eps_surprise_percent` string, nullable — The percentage difference between actual and estimated EPS When a null/undefined value is observed, it indicates that there is no available data.
          - `report_time` 'BMO' | 'AMC' — Earnings report timing: before market open or after market close
          - `revenue_actual` string, nullable — The actual total revenue for the period When a null/undefined value is observed, it indicates that there is no available data.
          - `revenue_estimate` string, nullable — The estimated total revenue for the period When a null/undefined value is observed, it indicates that there is no available data.
          - `revenue_surprise_percent` string, nullable — The percentage difference between actual and estimated revenue When a null/undefined value is observed, it indicates that there is no available data.
        - `instrument_id` string, uuid, nullable — Instrument identifier, when available. When a null/undefined value is observed, it indicates that there is no available data.
        - `ipo_event_data` InstrumentEventIpoItem — IPO event in the all-events date grouping response.
          - `actions` string, nullable — IPO action. When a null/undefined value is observed, it indicates that there is no available data.
          - `announced_at` string, date-time, nullable — IPO announced timestamp. When a null/undefined value is observed, it indicates that there is no available data.
          - `company` string, nullable — IPO company name. When a null/undefined value is observed, it indicates that there is no available data.
          - `exchange` string, nullable — IPO exchange. When a null/undefined value is observed, it indicates that there is no available data.
          - `market_cap` string, nullable — IPO market cap. When a null/undefined value is observed, it indicates that there is no available data.
          - `price_range` string, nullable — IPO price range. When a null/undefined value is observed, it indicates that there is no available data.
          - `shares` string, nullable — IPO shares offered. When a null/undefined value is observed, it indicates that there is no available data.
        - `name` string, nullable — Instrument name associated with the event, when available. When a null/undefined value is observed, it indicates that there is no available data.
        - `reporting_currency` string, nullable — The currency used for reporting financial data. When a null/undefined value is observed, it indicates that there is no available data.
        - `stock_split_event_data` InstrumentSplitEvent — Represents a stock split event for an instrument
          - `date` string, date, required — The date of the stock split
          - `denominator` string, required — The denominator of the split ratio
          - `numerator` string, required — The numerator of the split ratio
          - `split_type` string, required — The type of stock split (e.g., "stock-split", "stock-dividend", "bonus-issue")
        - `symbol` string, required — Symbol associated with the event.
        - `type` 'EARNINGS' | 'DIVIDEND' | 'STOCK_SPLIT' | 'IPO', required — Event types supported by the all-events endpoint.

## 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)
