curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/communications/rfqs/{rfq_id} \
--header 'KALSHI-ACCESS-KEY: <api-key>' \
--header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
--header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'{
"rfq": {
"id": "<string>",
"creator_id": "<string>",
"market_ticker": "<string>",
"contracts": 123,
"status": "open",
"created_ts": "2023-11-07T05:31:56Z",
"target_cost_centi_cents": 123,
"mve_collection_ticker": "<string>",
"mve_selected_legs": [
{
"event_ticker": "<string>",
"market_ticker": "<string>",
"side": "<string>"
}
],
"rest_remainder": true,
"cancellation_reason": "<string>",
"creator_user_id": "<string>",
"cancelled_ts": "2023-11-07T05:31:56Z",
"updated_ts": "2023-11-07T05:31:56Z"
}
}Endpoint for getting a single RFQ by id
curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/communications/rfqs/{rfq_id} \
--header 'KALSHI-ACCESS-KEY: <api-key>' \
--header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
--header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'{
"rfq": {
"id": "<string>",
"creator_id": "<string>",
"market_ticker": "<string>",
"contracts": 123,
"status": "open",
"created_ts": "2023-11-07T05:31:56Z",
"target_cost_centi_cents": 123,
"mve_collection_ticker": "<string>",
"mve_selected_legs": [
{
"event_ticker": "<string>",
"market_ticker": "<string>",
"side": "<string>"
}
],
"rest_remainder": true,
"cancellation_reason": "<string>",
"creator_user_id": "<string>",
"cancelled_ts": "2023-11-07T05:31:56Z",
"updated_ts": "2023-11-07T05:31:56Z"
}
}Your API key ID
RSA-PSS signature of the request
Request timestamp in milliseconds
RFQ ID
RFQ retrieved successfully
The details of the requested RFQ
Show child attributes
Unique identifier for the RFQ
Public communications ID of the RFQ creator
The ticker of the market this RFQ is for
Number of contracts requested in the RFQ
Current status of the RFQ (open, closed)
open, closed Timestamp when the RFQ was created
Total value of the RFQ in centi-cents
Ticker of the MVE collection this market belongs to
Whether to rest the remainder of the RFQ after execution
Reason for RFQ cancellation if cancelled
User ID of the RFQ creator (private field)
Timestamp when the RFQ was cancelled
Timestamp when the RFQ was last updated