TRX Market Data
This namespace contains endpoints to retrieve metrics related to TRX Market Data.
This endpoint returns metrics related to TRX's Price, Price OHLCV data consists of five metrics.
open
The opening price at the beginning of the window.
close
The USD closing price at the end of the window.
high
The highest USD price in a given window.
low
The lowest USD price in a given window.
volume
The total volume traded in a given window.
(*) Default exchange
Supported Exchanges By Market
Spot
spot
All Exchange*
Supported Pairs By Exchange
All Exchanges
all_exchange
trx_usd*
Supported Windows By Market
Spot
day*
For each API request, include this HTTP header:
Authorization with the Bearer {access_token}. Bearer access token is the type of HTTP Authorization. You have to include access token to the HTTP header and note that leading bearer is required.
You must include your access token in HTTP header in every request you make. The token is unique, issued for each client, and regularly changed(once a year). To obtain an access token, please upgrade your plan to Professional or Premium plan. You'll be able to see your access token on the API tab of your profile page after the subscription.
A market type from the table that we support. See here
spotExample: spotA exchange from the table that we support. See here.
all_exchangeExample: all_exchangeCurrently, we only support day.
dayExample: dayThis defines the starting time for which data will be gathered, formatted as YYYYMMDDTHHMMSS (indicating YYYY-MM-DDTHH:MM:SS, UTC time). If window=day is used, it can also be formatted as YYYYMMDD (date). If window=block is used, you can also specify the exact block height (e.g. 510000). If this field is not specified, response will include data from the earliest time.
20191001T100000This defines the ending time for which data will be gathered, formatted as YYYYMMDDTHHMMSS (indicating YYYY-MM-DDTHH:MM:SS, UTC time). If window=day is used, it can also be formatted as YYYYMMDD (date). If window=block is used, you can also specify the exact block height (e.g. 510000). If this field is not specified, response will include data from the latest time.
20191001T103025The maximum number of entries to return before the latest data point (or before to if specified). This field ranges from 1 to 100,000.
100Example: 100A format type about return message type. Supported formats are json, csv.
jsonExample: jsoncurl -X GET "https://api.cryptoquant.com/v1/trx/market-data/price-ohlcv?window=day&from=20190416&limit=2" \
-H "Authorization: Bearer ${access_token}"{
"status": {
"code": 200,
"message": "success"
},
"result": {
"window": "day",
"data": [
{
"date": "2019-10-02",
"open": null,
"high": null,
"low": null,
"close": null,
"volume": null
},
{
"date": "2019-10-01",
"open": null,
"high": null,
"low": null,
"close": null,
"volume": null
}
]
}
}This endpoint returns metrics related to market capitalization.
We provide market_cap, which is total market capitalization of TRX, calculated by multiplying the total supply with its USD price.
Go to Data Guide‣
For each API request, include this HTTP header:
Authorization with the Bearer {access_token}. Bearer access token is the type of HTTP Authorization. You have to include access token to the HTTP header and note that leading bearer is required.
You must include your access token in HTTP header in every request you make. The token is unique, issued for each client, and regularly changed(once a year). To obtain an access token, please upgrade your plan to Professional or Premium plan. You'll be able to see your access token on the API tab of your profile page after the subscription.
Currently, we only support day.
dayExample: dayThis defines the starting time for which data will be gathered, formatted as YYYYMMDDTHHMMSS (indicating YYYY-MM-DDTHH:MM:SS, UTC time). If window=day is used, it can also be formatted as YYYYMMDD (date). If window=block is used, you can also specify the exact block height (e.g. 510000). If this field is not specified, response will include data from the earliest time.
20191001T100000This defines the ending time for which data will be gathered, formatted as YYYYMMDDTHHMMSS (indicating YYYY-MM-DDTHH:MM:SS, UTC time). If window=day is used, it can also be formatted as YYYYMMDD (date). If window=block is used, you can also specify the exact block height (e.g. 510000). If this field is not specified, response will include data from the latest time.
20191001T103025The maximum number of entries to return before the latest data point (or before to if specified). This field ranges from 1 to 100,000.
100Example: 100A format type about return message type. Supported formats are json, csv.
jsonExample: jsoncurl -X GET "https://api.cryptoquant.com/v1/trx/market-data/capitalization?window=day&from=20191001&limit=2" \
-H "Authorization: Bearer {access_token}"{
"status": {
"code": 200,
"message": "success"
},
"result": {
"window": "day",
"data": [
{
"date": "2019-10-02",
"market_cap": null
},
{
"date": "2019-10-01",
"market_cap": null
}
]
}
}Last updated
Was this helpful?