Skip to main content
GET
/
communications
/
quotes
Get Quotes
curl --request GET \
  --url https://api.elections.kalshi.com/trade-api/v2/communications/quotes \
  --header 'KALSHI-ACCESS-KEY: <api-key>' \
  --header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
  --header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'
{
  "quotes": [
    {
      "id": "<string>",
      "rfq_id": "<string>",
      "creator_id": "<string>",
      "rfq_creator_id": "<string>",
      "market_ticker": "<string>",
      "contracts": 123,
      "yes_bid": 123,
      "no_bid": 123,
      "created_ts": "2023-11-07T05:31:56Z",
      "updated_ts": "2023-11-07T05:31:56Z",
      "status": "open",
      "accepted_side": "yes",
      "accepted_ts": "2023-11-07T05:31:56Z",
      "confirmed_ts": "2023-11-07T05:31:56Z",
      "executed_ts": "2023-11-07T05:31:56Z",
      "cancelled_ts": "2023-11-07T05:31:56Z",
      "rest_remainder": true,
      "cancellation_reason": "<string>",
      "creator_user_id": "<string>",
      "rfq_creator_user_id": "<string>",
      "expired_ts": "2023-11-07T05:31:56Z",
      "rfq_target_cost_centi_cents": 123,
      "rfq_creator_order_id": "<string>",
      "creator_order_id": "<string>"
    }
  ],
  "cursor": "<string>"
}

Authorizations

KALSHI-ACCESS-KEY
string
header
required

Your API key ID

KALSHI-ACCESS-SIGNATURE
string
header
required

RSA-PSS signature of the request

KALSHI-ACCESS-TIMESTAMP
string
header
required

Request timestamp in milliseconds

Query Parameters

cursor
string

Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.

event_ticker
string

Event ticker of desired positions. Multiple event tickers can be provided as a comma-separated list (maximum 10).

market_ticker
string

Filter by market ticker

limit
integer
default:500

Parameter to specify the number of results per page. Defaults to 500.

Required range: 1 <= x <= 500
status
string

Filter quotes by status

quote_creator_user_id
string

Filter quotes by quote creator user ID

rfq_creator_user_id
string

Filter quotes by RFQ creator user ID

rfq_id
string

Filter quotes by RFQ ID

Response

Quotes retrieved successfully

quotes
object[]
required

List of quotes matching the query criteria

cursor
string

Cursor for pagination to get the next page of results