Orders

Gets all open quotes. Any valid orders that are fillable and present in the orderbook for the given account (if specified), otherwise the address in the .env is used.

get
Authorizations
Query parameters
walletAddrstringOptional

wallet address

Example: 0x3ba638...fb25ePattern: ^0x[a-fA-F0-9]{40}$
Responses
200
Successful operation
application/json
get
GET /account/orders HTTP/1.1
Host: 
x-apikey: YOUR_API_KEY
Accept: */*
[
  {
    "base": "WETH",
    "quote": "USDC",
    "expiration": "03NOV23",
    "strike": 1700,
    "type": "P",
    "side": "bid",
    "remainingSize": 3,
    "provider": "0x3ba638...fb25e",
    "taker": "0x0000000000000000000000000000000000000000",
    "price": ".15",
    "deadline": 184,
    "quoteId": "0x3ba638...fb25e",
    "ts": 1698952534
  }
]

Last updated

Was this helpful?