POST
/
rpc
/
Builder
/
GetOrderbookCollections
curl --request POST \
  --url https://api.sequence.app/rpc/Builder/GetOrderbookCollections \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --data '{
  "filter": {
    "projectId": 123,
    "startDate": "<string>",
    "endDate": "<string>",
    "dateInterval": "DAY",
    "collections": [
      "<string>"
    ],
    "tokenId": "<string>"
  }
}'
{
  "data": [
    {
      "collection": "<string>",
      "source": "<string>",
      "tokenId": "<string>",
      "volumeUSD": 123,
      "numTokens": 123,
      "numTxns": 123
    }
  ]
}

Authorizations

X-Access-Key
string
header
required

Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI

Body

application/json
filter
object

Response

200
application/json
OK
data
object[]

[]QueryResult