BRC-20s by Tickers
This endpoint is used to retrieve the metadata & market data associated with a batch of up to 100 BRC-20 tickers in a single request.
post
Get information for multiple BRC-20 tokens in batch (max 100 tickers per request).
Authorizations
x-api-keystringRequired
Body
tickersstring[] · min: 1 · max: 100RequiredExample:
Array of ticker symbols to fetch (max 100)
["ordi","sats"]Responses
200
Default Response
application/json
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
post
/v1/brc20/batch/tickersPOST /v1/brc20/batch/tickers HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 27
{
"tickers": [
"ordi",
"sats"
]
}{
"items": [
{
"ticker": "text",
"maxSupply": "text",
"mintLimit": "text",
"decimals": 1,
"txid": "text",
"inscriptionId": "text",
"blockHeight": "text",
"isSelfMint": true,
"prices": {
"floorPrice": {
"marketplace": "text",
"valueInSats": "text",
"valueInUsd": "text",
"percentageChange24h": {
"valueInSats": "text",
"valueInUsd": "text"
}
},
"lastSalePrice": {
"marketplace": "text",
"valueInSats": "text",
"valueInUsd": "text"
}
},
"volume24h": {
"valueInSats": "text",
"valueInUsd": "text",
"percentageChange": {
"valueInSats": "text",
"valueInUsd": "text"
}
}
}
]
}Last updated