curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/communications/quotes/{quote_id} \
--header 'KALSHI-ACCESS-KEY: <api-key>' \
--header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
--header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'{
"quote": {
"id": "<string>",
"rfq_id": "<string>",
"creator_id": "<string>",
"rfq_creator_id": "<string>",
"market_ticker": "<string>",
"contracts": 123,
"yes_bid": 123,
"no_bid": 123,
"yes_bid_dollars": "0.5600",
"no_bid_dollars": "0.5600",
"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>",
"rfq_target_cost_centi_cents": 123,
"rfq_creator_order_id": "<string>",
"creator_order_id": "<string>"
}
}Endpoint for getting a particular quote
curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/communications/quotes/{quote_id} \
--header 'KALSHI-ACCESS-KEY: <api-key>' \
--header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
--header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'{
"quote": {
"id": "<string>",
"rfq_id": "<string>",
"creator_id": "<string>",
"rfq_creator_id": "<string>",
"market_ticker": "<string>",
"contracts": 123,
"yes_bid": 123,
"no_bid": 123,
"yes_bid_dollars": "0.5600",
"no_bid_dollars": "0.5600",
"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>",
"rfq_target_cost_centi_cents": 123,
"rfq_creator_order_id": "<string>",
"creator_order_id": "<string>"
}
}Your API key ID
RSA-PSS signature of the request
Request timestamp in milliseconds
Quote ID
Quote retrieved successfully
The details of the requested quote
Show child attributes
Unique identifier for the quote
ID of the RFQ this quote is responding to
Public communications ID of the quote creator
Public communications ID of the RFQ creator
The ticker of the market this quote is for
Number of contracts in the quote
Bid price for YES contracts, in cents
Bid price for NO contracts, in cents
Bid price for YES contracts, in dollars
"0.5600"
Bid price for NO contracts, in dollars
"0.5600"
Timestamp when the quote was created
Timestamp when the quote was last updated
Current status of the quote
open, accepted, confirmed, executed, cancelled The side that was accepted (yes or no)
yes, no Timestamp when the quote was accepted
Timestamp when the quote was confirmed
Timestamp when the quote was executed
Timestamp when the quote was cancelled
Whether to rest the remainder of the quote after execution
Reason for quote cancellation if cancelled
User ID of the quote creator (private field)
User ID of the RFQ creator (private field)
Total value requested in the RFQ in centi-cents
Order ID for the RFQ creator (private field)
Order ID for the quote creator (private field)