Get All Instrument Events
client.V1.InstrumentData.GetAllInstrumentEvents(ctx, query) (*V1InstrumentDataGetAllInstrumentEventsResponse, error)
GET/v1/instruments/events
List instrument events across all securities.
Retrieves all instrument events grouped by date.
Get All Instrument Events
package main
import (
"context"
"fmt"
"github.com/clear-street/clear-street-go"
"github.com/clear-street/clear-street-go/option"
)
func main() {
client := clearstreet.NewClient(
option.WithAPIKey("My API Key"),
)
response, err := client.V1.InstrumentData.GetAllInstrumentEvents(context.TODO(), clearstreet.V1InstrumentDataGetAllInstrumentEventsParams{
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response)
}
{
"data": {
"event_dates": [
{
"date": "2026-04-23",
"events": [
{
"dividend_event_data": {
"adjusted_dividend_amount": "0.5236",
"declaration_date": "2026-04-22",
"dividend_amount": "0.5236",
"dividend_yield": "43.82881469863321",
"ex_date": "2026-04-23",
"frequency": "Weekly",
"payment_date": "2026-04-24",
"record_date": "2026-04-23"
},
"instrument_id": "2281b543-7136-4008-aa0a-a402bf9d9f90",
"name": "YieldMax ABNB Option Income Strategy ETF",
"reporting_currency": "USD",
"symbol": "ABNY",
"type": "DIVIDEND"
},
{
"dividend_event_data": {
"adjusted_dividend_amount": "0.1432",
"declaration_date": "2026-04-22",
"dividend_amount": "0.1432",
"dividend_yield": "181.7918287937743",
"ex_date": "2026-04-23",
"frequency": "Weekly",
"payment_date": "2026-04-24",
"record_date": "2026-04-23"
},
"instrument_id": "4b33fa52-8ab6-43f5-a8df-042e0c63d20e",
"name": "YieldMax AI Option Income Strategy ETF",
"reporting_currency": "USD",
"symbol": "AIYY",
"type": "DIVIDEND"
}
]
}
]
},
"metadata": {
"request_id": "5efbf08a-9067-4491-9f29-cf0b233507ef"
}
}{
"error": {
"code": 400,
"message": "Failed to deserialize query string. Error: premature end of input"
},
"metadata": {
"request_id": "e0a9bd3a-8510-41a7-8144-c51a27787b9c"
}
}Returns Examples
{
"data": {
"event_dates": [
{
"date": "2026-04-23",
"events": [
{
"dividend_event_data": {
"adjusted_dividend_amount": "0.5236",
"declaration_date": "2026-04-22",
"dividend_amount": "0.5236",
"dividend_yield": "43.82881469863321",
"ex_date": "2026-04-23",
"frequency": "Weekly",
"payment_date": "2026-04-24",
"record_date": "2026-04-23"
},
"instrument_id": "2281b543-7136-4008-aa0a-a402bf9d9f90",
"name": "YieldMax ABNB Option Income Strategy ETF",
"reporting_currency": "USD",
"symbol": "ABNY",
"type": "DIVIDEND"
},
{
"dividend_event_data": {
"adjusted_dividend_amount": "0.1432",
"declaration_date": "2026-04-22",
"dividend_amount": "0.1432",
"dividend_yield": "181.7918287937743",
"ex_date": "2026-04-23",
"frequency": "Weekly",
"payment_date": "2026-04-24",
"record_date": "2026-04-23"
},
"instrument_id": "4b33fa52-8ab6-43f5-a8df-042e0c63d20e",
"name": "YieldMax AI Option Income Strategy ETF",
"reporting_currency": "USD",
"symbol": "AIYY",
"type": "DIVIDEND"
}
]
}
]
},
"metadata": {
"request_id": "5efbf08a-9067-4491-9f29-cf0b233507ef"
}
}{
"error": {
"code": 400,
"message": "Failed to deserialize query string. Error: premature end of input"
},
"metadata": {
"request_id": "e0a9bd3a-8510-41a7-8144-c51a27787b9c"
}
}