Skip to main content

public/get-events

GET 

/public/get-events

Returns a paginated list of prediction market events.

Request

Query Parameters

    limit int32

    Maximum number of events to return per page. Defaults to 100.

    since int64

    Unix timestamp in milliseconds. Returns events created or updated after this time. Defaults to 0.

    cursor string

    Pagination cursor from the previous response. Omit for the first request.

    event_date int64

    Lower bound filter (epoch nanoseconds). Returns events where event_date >= value.

    event_end_date int64

    Upper bound filter (epoch nanoseconds). Returns events where event_end_date <= value or event_end_date is null.

    SPORTS_GROUPING string

    Filter by sport (e.g., MLB, NFL, SOCCER). Value is case-insensitive. Key must be uppercase.

    LEAGUE string

    Filter by league (e.g., NFL, FIFA). Value is case-insensitive. Key must be uppercase.

    PREDICT_CATEGORY string

    Filter by category (e.g., Sports, Politics). Exact match. Key must be uppercase.

    PREDICT_EVENT_TYPE string

    Filter by event type (e.g., Game, Fight, Tournament). Exact match. Key must be uppercase.

Success.
Schema
    id int64

    Original request identifier

    method string

    Method name

    code int32

    0 for success; error code otherwise

    message string

    Error message for non-zero codes

    result object
    data object[]
    List of prediction market events.
  • Array [
  • symbol string

    Unique symbol identifier for the event.

    series_symbols string[]

    List of series symbols this event belongs to.

    name string

    Human-readable name of the event.

    description string

    Description of the event.

    event_date int64

    Unix timestamp in nanoseconds when the event is scheduled.

    event_end_date int64nullable

    Event end timestamp in nanoseconds. Null for events with no defined end date.

    last_updated_time int64

    Unix timestamp in nanoseconds when the event was last updated.

    event_details object
    Additional event metadata.
    eventName string

    Name of the event.

    metaData object
    Dynamic key-value metadata for the event. Structure varies by event type.
    property name* any

    Dynamic key-value metadata for the event. Structure varies by event type.

  • ]
  • next_cursor string

    Pagination cursor. Pass this value in the cursor parameter of the next request to fetch more results.