Polyrankdocs
Markets

GET /v1/market/{conditionId}/fills

Recent fills for a market (cursor-paginated, descending block_time).

GET
/v1/market/{conditionId}/fills

Recent fills for a market (cursor-paginated, descending block_time).

AuthorizationBearer <token>

API key: Authorization: Bearer pk_live_… (mint at polyrank.app/api-keys)

In: header

Path Parameters

conditionId*string

Query Parameters

limit?integer
cursor?string

Response Body

application/json

curl -X GET "https://example.com/v1/market/string/fills"
{  "condition_id": "string",  "rows": [    {      "tx_hash": "string",      "block_time": "string",      "block_number": -9007199254740991,      "taker_proxy": "string",      "maker_proxy": "string",      "outcome_side": "YES",      "price": 0,      "size_shares": 0,      "notional_usdc": 0,      "exchange_version": "string"    }  ],  "next_cursor": "string"}