Transactions
- Overview
- Installation
- Endpoints
- Examples
Indexer
- Overview
- Installation
- Endpoints
- Examples
Indexer Gateway
Analytics
- Overview
- Endpoints
- secret
- default
- Examples
Metadata
- Overview
- Endpoints
- Examples
Infrastructure
- Overview
- Endpoints
Builder
- Overview
- Endpoints
Marketplace
- Overview
- Endpoints
- Examples
Blockchain RPC
default
GetOrderbookCollections
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
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json
Was this page helpful?
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
}
]
}