Skip to main content
GET
/
data
/
order
/
{id}
Get single order - GET /data/order/:id
curl --request GET \
  --url https://api.blink15.com/data/order/{id} \
  --header 'BLINK-SIGNATURE: <api-key>'
{
  "asset_id": "<string>",
  "created_at": 123,
  "id": "<string>",
  "maker_address": "<string>",
  "market": "<string>",
  "order_type": "<string>",
  "original_size": "<string>",
  "outcome": "<string>",
  "owner": "<string>",
  "price": "<string>",
  "side": "<string>",
  "size_matched": "<string>",
  "status": "<string>",
  "associate_trades": [
    "<string>"
  ],
  "expiration": "<string>",
  "order_hash": "<string>"
}

Authorizations

Path Parameters

id
string
required

Order UUID

Response

Single order details

Order info returned by /data/orders - matches Polymarket PolymarketOpenOrder format for Nautilus

asset_id
string
required

Token ID as decimal string (for int() conversion)

created_at
integer<int64>
required

Created at - epoch seconds (integer)

id
string
required
maker_address
string
required

Maker address (required by Nautilus)

market
string
required

Market ID (UUID string)

order_type
string
required

Order type / time in force: "GTC", "GTD", "FOK", "FAK"

original_size
string
required
outcome
string
required

Outcome: "Yes" or "No"

owner
string
required

Owner (api key/address)

price
string
required

Price as decimal string

side
string
required

"BUY" or "SELL" (uppercase)

size_matched
string
required
status
string
required

Status in UPPERCASE for Nautilus Trader compatibility: LIVE, MATCHED, CANCELED, etc.

associate_trades
string[] | null

Associate trades (list of trade IDs or null)

expiration
string | null

Expiration timestamp in ms (as string or null) - must always be present

order_hash
string | null