api/v2/tickers-list - Bitcoin
Example code for the api/v2/tickers-list REST method. Complete guide on how to use the api/v2/tickers-list REST method in the GetBlock Web3 documentation.
This endpoint returns the fiat currencies for which the indexer has rate data available at a given timestamp.
Parameters
timestamp
integer
query
Yes
Unix timestamp for the requested currency list
token
string
query
No
Token symbol or contract key for token-specific data
Request
curl --location --request GET 'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/api/v2/tickers-list/?timestamp=1617180599'const response = await fetch(
'https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/api/v2/tickers-list/?timestamp=1617180599'
);
console.log(await response.json());import requests
response = requests.get('https://shared.eu-central-1.getblock.io/<ACCESS-TOKEN>/api/v2/tickers-list/?timestamp=1617180599')
print(response.json())Response
{
"ts": 1617180599,
"available_currencies": [
"usd",
"eur",
"gbp",
"jpy",
"btc"
]
}Response Parameters
ts
integer
Timestamp the currency list applies to
available_currencies
array
Currency codes with rate data
error
string
Error text when no list is available
Use Cases
Currency Pickers: Populate a currency selector with supported codes
Rate Availability: Check which currencies have data before requesting rates
Localization: Offer only currencies the indexer can price
Validation: Confirm a requested currency is supported at a timestamp
Error Handling
400
Bad request
A query parameter has an invalid value
404
Not found
No rate data exists for the requested query
500
Internal error
The indexer failed to read rate data
Last updated
Was this helpful?