Skip to main content
GET
/
rfqs
List RFQs
curl --request GET \
  --url https://api.totalis.com/rfqs \
  --header 'Authorization: Bearer <token>'
{
  "rfqs": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "<string>",
      "legs": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "kalshi_event_ticker": "<string>",
          "kalshi_market_ticker": "<string>",
          "side": "yes",
          "event_title": "<string>",
          "market_title": "<string>",
          "current_yes_price": 123,
          "current_no_price": 123
        }
      ],
      "status": "open",
      "created_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "bet_amount": 5000.5,
      "implied_probability": 123,
      "accepted_quote_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "cancellation_reason": "<string>",
      "escrow_pda": "<string>",
      "escrow_status": "created"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Privy JWT token. Use Authorization: Bearer <token>. Supported for REST API only.

Query Parameters

status
enum<string>

Filter by RFQ status Lifecycle status of an RFQ

Available options:
open,
quoted,
accepted,
confirmed,
executed,
cancelled,
expired
limit
integer
default:20

Maximum number of results to return

Required range: 1 <= x <= 100

Response

List of RFQs

rfqs
object[]
cursor
string | null

Pagination cursor (reserved for future use)