API Docs
/finazon/crypto/tickers
Returns a list of cryptocurrency ticker symbols (pairs). This list is updated daily.
ticker
Filter by ticker symbol
Example: BTC/USDT
page
Specific page of a paginated result to be displayed
Example: 0
page_size
Number of items displayed per page in a paginated result
Default value:
1000
/finazon/crypto/price
Returns price value for given crypto ticker.
ticker
Filter by ticker symbol
Example: BTC/USDT
at
Filter by start time using a UNIX timestamp. If not specified - last price. Else - last price from 1min interval at the event_at <= at
Example: 1686956400
/finazon/crypto/time_series
This endpoint returns a time series of data points for any given ticker.
ticker
Filter by ticker symbol
Example: BTC/USDT
interval
Interval between two consecutive points in time series
Values: 1m
2m
3m
4m
5m
10m
15m
20m
30m
45m
1h
2h
3h
4h
8h
12h
1d
1w
1mo
2mo
3mo
4mo
order
Sorting order of the output series
Values: desc
asc
Default value:
desc
start_at
Filter output by start time using a UNIX timestamp
Example: 1681963910
end_at
Filter output by end time using a UNIX timestamp
Example: 1687209110
page
Specific page of a paginated result to be displayed
Default value:
0
page_size
Number of items displayed per page in a paginated result
Default value:
30
/finazon/crypto/ticker_snapshot
This endpoint returns a combination of different data points, such as daily performance, last quote, last trade, minute data, and previous day performance.
ticker
Filter by ticker symbol
Example: BTC/USDT
country
Filter by ISO 3166 alpha-2 code
Example: US
{
"1d": {
"o": "154.12",
"h": "154.9",
"l": "153.2",
"c": "154.55",
"v": "65893054"
},
"1m": {
"o": "154.12",
"h": "154.9",
"l": "153.2",
"c": "154.55",
"v": "65893054"
},
"52w": {
"h": "154.9",
"ht": 1679951555,
"l": "153.2",
"lt": 1679951555,
"ch": 30.2,
"chp": 0.23,
"av": 34853128
},
"ch": {
"dap": 0.156,
"wep": 0.243,
"mop": -0.034
},
"lt": {
"tm": 1687543759200,
"p": "154.75",
"s": 17
},
"p1d": {
"o": "154.12",
"h": "154.9",
"l": "153.2",
"c": "154.55",
"v": "65893054"
}
}
/finazon/crypto/api_usage
Returns API usage for the current dataset
{
"api_calls": {
"limit": 1000,
"usage": 10
},
"api_calls_dataset": {
"limit": 1000,
"usage": 10
},
"api_calls_price": {
"limit": 1000,
"usage": 10
},
"api_calls_reference": {
"limit": 1000,
"usage": 10
},
"api_calls_snapshots": {
"limit": 1000,
"usage": 10
},
"api_calls_time_series": {
"limit": 1000,
"usage": 10
},
"api_calls_trades": {
"limit": 1000,
"usage": 10
},
"historical_api_calls": {
"limit": 1000,
"usage": 10
}
}