List all symbols
GET/v1/symbols
Retrieves all symbols with optional filtering.
"price_precision" and "size_precision" are data precisions and are not always the same precisions used for trading eg. for the "BINANCE" exchanges.
You should not assume that the market data will be always within the resolution provided by the "price_precision" and "size_precision". The fact that the precision values can be derived from a posterior implies the fact that this data could be delayed, also it can be changed by the data source without notice and we will immediately deliver data with the new precision while could not update the precision values in this endpoint immediately.
Symbol identifier
Our symbol identifier is created using a pattern that depends on symbol type.
Type | symbol_id pattern |
---|---|
SPOT | {exchange_id}_SPOT_{asset_id_base}_{asset_id_quote} |
FUTURES | {exchange_id}_FTS_{asset_id_base}_{asset_id_quote}_{YYMMDD of future_delivery_time} |
OPTION | {exchange_id}_OPT_{asset_id_base}_{asset_id_quote}_{YYMMDD of option_expiration_time}_{option_strike_price}_{option_type_is_call as C/P} |
PERPETUAL | {exchange_id}_PERP_{asset_id_base}_{asset_id_quote} |
INDEX | {exchange_id}_IDX_{index_id} |
CREDIT | {exchange_id}_CRE_{asset_id_base} |
CONTACT | {exchange_id}_COT_{contract_id} |
In the unlikely event when the "symbol_id" for more than one market is the same. We will append the additional term (prefixed with the "_") at the end of the duplicated identifiers to differentiate them.
Symbol types list (enumeration of symbol_type
output variable)
Type | Name | Description |
---|---|---|
SPOT | FX Spot | Agreement to exchange one asset for another one (e.g. Buy BTC for USD) |
FUTURES | Futures contract | FX Spot derivative contract where traders agree to trade fx spot at predetermined future time |
OPTION | Option contract | FX Spot derivative contract where traders agree to trade right to require buy or sell of fx spot at agreed price on exercise date |
PERPETUAL | Perpetual contract | FX Spot derivative contract where traders agree to trade fx spot continously without predetermined future delivery time |
INDEX | Index | Statistical composite that measures changes in the economy or markets. |
CREDIT | Credit/Funding | Margin funding contract. Order book displays lending offers and borrow bids. Price represents the daily rate. |
CONTRACT | Contract | Represents other types of financial instruments (e.g. spreads, interest rate swap) |
Additional output variables for symbol_type = INDEX
Variable | Description |
---|---|
index_id | Index identifier |
index_display_name | Human readable name of the index (optional) |
index_display_description | Description of the index (optional) |
Additional output variables for symbol_type = FUTURES
Variable | Description |
---|---|
future_delivery_time | Predetermined time of futures contract delivery date in ISO 8601 |
future_contract_unit | Contact size (eg. 10 BTC if future_contract_unit = 10 and future_contract_unit_asset = BTC ) |
future_contract_unit_asset | Identifier of the asset used to denominate the contract unit |
Additional output variables for symbol_type = PERPETUAL
Variable | Description |
---|---|
future_contract_unit | Contact size (eg. 10 BTC if future_contract_unit = 10 and future_contract_unit_asset = BTC ) |
future_contract_unit_asset | Identifier of the asset used to denominate the contract unit |
Additional output variables for symbol_type = OPTION
Variable | Description |
---|---|
option_type_is_call | Boolean value representing option type. true for Call options, false for Put options |
option_strike_price | Price at which option contract can be exercised |
option_contract_unit | Base asset amount of underlying spot which single option represents |
option_exercise_style | Option exercise style. Can be EUROPEAN or AMERICAN |
option_expiration_time | Option contract expiration time in ISO 8601 |
Additional output variables for symbol_type = CONTRACT
Variable | Description |
---|---|
contract_delivery_time | Predetermined time of contract delivery date in ISO 8601 |
contract_unit | Contact size (eg. 10 BTC if contract_unit = 10 and contract_unit_asset = BTC ) |
contract_unit_asset | Identifier of the asset used to denominate the contract unit |
contract_id | Identifier of contract by the exchange |
Request
Query Parameters
Comma or semicolon delimited parts of symbol identifier used to filter response. (optional, eg. BITSTAMP
_ or BINANCE_SPOT_
)
The filter for exchange ID.
The filter for asset ID.
Responses
- 200
successful operation
- text/plain
- application/json
- text/json
- application/x-msgpack
- Schema
- Example (from schema)
- Example response
Schema
Array [
]
The symbol identifier.
The exchange identifier.
The symbol type.
The base asset identifier.
The quote asset identifier.
The unit asset identifier.
The contract unit for futures.
The asset used as the unit for futures contract.
The future delivery time for futures contract.
Indicates whether the option type is a call.
The strike price for options.
The contract unit for options.
The exercise style for options.
The expiration time for options.
The delivery time for contracts.
The contract unit for contracts.
The asset used as the unit for contracts.
The contract identifier.
The display name of the contract.
The display description of the contract.
The start date of quote data.
The end date of quote data.
The start date of order book data.
The end date of order book data.
The start date of trade data.
The end date of trade data.
The index identifier.
The display name of the index.
The display description of the index.
The volume in the last 1 hour.
The volume in USD in the last 1 hour.
The volume in the last 1 day.
The volume in USD in the last 1 day.
The volume in the last 1 month.
The volume in USD in the last 1 month.
The price.
The symbol identifier in the exchange.
The base asset identifier in the exchange.
The quote asset identifier in the exchange.
The price precision.
The size precision.
raw_kvp
object
nullable
Not normalized raw kvp data.
[
{
"symbol_id": "string",
"exchange_id": "string",
"symbol_type": "string",
"asset_id_base": "string",
"asset_id_quote": "string",
"asset_id_unit": "string",
"future_contract_unit": 0,
"future_contract_unit_asset": "string",
"future_delivery_time": "2024-10-04T08:51:24.348Z",
"option_type_is_call": true,
"option_strike_price": 0,
"option_contract_unit": 0,
"option_exercise_style": "string",
"option_expiration_time": "2024-10-04T08:51:24.348Z",
"contract_delivery_time": "2024-10-04T08:51:24.348Z",
"contract_unit": 0,
"contract_unit_asset": "string",
"contract_id": "string",
"contract_display_name": "string",
"contract_display_description": "string",
"data_start": "string",
"data_end": "string",
"data_quote_start": "2024-10-04T08:51:24.348Z",
"data_quote_end": "2024-10-04T08:51:24.348Z",
"data_orderbook_start": "2024-10-04T08:51:24.348Z",
"data_orderbook_end": "2024-10-04T08:51:24.348Z",
"data_trade_start": "2024-10-04T08:51:24.348Z",
"data_trade_end": "2024-10-04T08:51:24.348Z",
"index_id": "string",
"index_display_name": "string",
"index_display_description": "string",
"volume_1hrs": 0,
"volume_1hrs_usd": 0,
"volume_1day": 0,
"volume_1day_usd": 0,
"volume_1mth": 0,
"volume_1mth_usd": 0,
"price": 0,
"symbol_id_exchange": "string",
"asset_id_base_exchange": "string",
"asset_id_quote_exchange": "string",
"price_precision": 0,
"size_precision": 0,
"raw_kvp": {}
}
]
[
{
"symbol_id": "KRAKENFTS_PERP_BTC_USD",
"exchange_id": "KRAKENFTS",
"symbol_type": "PERPETUAL",
"asset_id_base": "BTC",
"asset_id_quote": "USD",
"asset_id_unit": "USD",
"future_contract_unit": 1,
"future_contract_unit_asset": "USD",
"data_start": "2019-10-30",
"data_end": "2021-03-03",
"data_quote_start": "2019-10-30T16:53:10.3262317Z",
"data_quote_end": "2021-03-03T13:51:45.6970000Z",
"data_orderbook_start": "2019-10-30T16:53:10.3262317Z",
"data_orderbook_end": "2020-08-05T14:37:32.0080000Z",
"data_trade_start": "2019-10-30T16:38:52.1620000Z",
"data_trade_end": "2021-03-03T13:46:25.7810000Z",
"volume_1hrs": 22897091,
"volume_1hrs_usd": 22897091,
"volume_1day": 459390289,
"volume_1day_usd": 459390289,
"volume_1mth": 12875674995,
"volume_1mth_usd": 12875674995,
"price": 51266,
"symbol_id_exchange": "pi_xbtusd",
"asset_id_base_exchange": "XBT",
"asset_id_quote_exchange": "USD",
"price_precision": 0.1,
"size_precision": 1
},
{
"symbol_id": "POLONIEX_SPOT_LTC_USDC",
"exchange_id": "POLONIEX",
"symbol_type": "SPOT",
"asset_id_base": "LTC",
"asset_id_quote": "USDC",
"data_start": "2018-11-20",
"data_end": "2021-03-01",
"data_quote_start": "2018-11-20T15:24:58.4128803Z",
"data_quote_end": "2021-03-01T16:07:09.3475456Z",
"data_orderbook_start": "2018-11-20T15:24:58.4128803Z",
"data_orderbook_end": "2020-08-05T14:37:20.2695780Z",
"data_trade_start": "2018-11-20T15:25:38.0000000Z",
"data_trade_end": "2021-03-01T16:03:18.0000000Z",
"volume_1hrs": 51.68645899,
"volume_1hrs_usd": 9036.44,
"volume_1day": 465.568863,
"volume_1day_usd": 81396.28,
"volume_1mth": 22528.27638495,
"volume_1mth_usd": 3938661,
"symbol_id_exchange": "USDC_LTC",
"asset_id_base_exchange": "LTC",
"asset_id_quote_exchange": "USDC",
"price_precision": 1e-8,
"size_precision": 1e-8
}
]
- Schema
- Example (from schema)
- Example response
Schema
Array [
]
The symbol identifier.
The exchange identifier.
The symbol type.
The base asset identifier.
The quote asset identifier.
The unit asset identifier.
The contract unit for futures.
The asset used as the unit for futures contract.
The future delivery time for futures contract.
Indicates whether the option type is a call.
The strike price for options.
The contract unit for options.
The exercise style for options.
The expiration time for options.
The delivery time for contracts.
The contract unit for contracts.
The asset used as the unit for contracts.
The contract identifier.
The display name of the contract.
The display description of the contract.
The start date of quote data.
The end date of quote data.
The start date of order book data.
The end date of order book data.
The start date of trade data.
The end date of trade data.
The index identifier.
The display name of the index.
The display description of the index.
The volume in the last 1 hour.
The volume in USD in the last 1 hour.
The volume in the last 1 day.
The volume in USD in the last 1 day.
The volume in the last 1 month.
The volume in USD in the last 1 month.
The price.
The symbol identifier in the exchange.
The base asset identifier in the exchange.
The quote asset identifier in the exchange.
The price precision.
The size precision.
raw_kvp
object
nullable
Not normalized raw kvp data.
[
{
"symbol_id": "string",
"exchange_id": "string",
"symbol_type": "string",
"asset_id_base": "string",
"asset_id_quote": "string",
"asset_id_unit": "string",
"future_contract_unit": 0,
"future_contract_unit_asset": "string",
"future_delivery_time": "2024-10-04T08:51:24.349Z",
"option_type_is_call": true,
"option_strike_price": 0,
"option_contract_unit": 0,
"option_exercise_style": "string",
"option_expiration_time": "2024-10-04T08:51:24.349Z",
"contract_delivery_time": "2024-10-04T08:51:24.349Z",
"contract_unit": 0,
"contract_unit_asset": "string",
"contract_id": "string",
"contract_display_name": "string",
"contract_display_description": "string",
"data_start": "string",
"data_end": "string",
"data_quote_start": "2024-10-04T08:51:24.349Z",
"data_quote_end": "2024-10-04T08:51:24.349Z",
"data_orderbook_start": "2024-10-04T08:51:24.349Z",
"data_orderbook_end": "2024-10-04T08:51:24.349Z",
"data_trade_start": "2024-10-04T08:51:24.349Z",
"data_trade_end": "2024-10-04T08:51:24.349Z",
"index_id": "string",
"index_display_name": "string",
"index_display_description": "string",
"volume_1hrs": 0,
"volume_1hrs_usd": 0,
"volume_1day": 0,
"volume_1day_usd": 0,
"volume_1mth": 0,
"volume_1mth_usd": 0,
"price": 0,
"symbol_id_exchange": "string",
"asset_id_base_exchange": "string",
"asset_id_quote_exchange": "string",
"price_precision": 0,
"size_precision": 0,
"raw_kvp": {}
}
]
[
{
"symbol_id": "KRAKENFTS_PERP_BTC_USD",
"exchange_id": "KRAKENFTS",
"symbol_type": "PERPETUAL",
"asset_id_base": "BTC",
"asset_id_quote": "USD",
"asset_id_unit": "USD",
"future_contract_unit": 1,
"future_contract_unit_asset": "USD",
"data_start": "2019-10-30",
"data_end": "2021-03-03",
"data_quote_start": "2019-10-30T16:53:10.3262317Z",
"data_quote_end": "2021-03-03T13:51:45.6970000Z",
"data_orderbook_start": "2019-10-30T16:53:10.3262317Z",
"data_orderbook_end": "2020-08-05T14:37:32.0080000Z",
"data_trade_start": "2019-10-30T16:38:52.1620000Z",
"data_trade_end": "2021-03-03T13:46:25.7810000Z",
"volume_1hrs": 22897091,
"volume_1hrs_usd": 22897091,
"volume_1day": 459390289,
"volume_1day_usd": 459390289,
"volume_1mth": 12875674995,
"volume_1mth_usd": 12875674995,
"price": 51266,
"symbol_id_exchange": "pi_xbtusd",
"asset_id_base_exchange": "XBT",
"asset_id_quote_exchange": "USD",
"price_precision": 0.1,
"size_precision": 1
},
{
"symbol_id": "POLONIEX_SPOT_LTC_USDC",
"exchange_id": "POLONIEX",
"symbol_type": "SPOT",
"asset_id_base": "LTC",
"asset_id_quote": "USDC",
"data_start": "2018-11-20",
"data_end": "2021-03-01",
"data_quote_start": "2018-11-20T15:24:58.4128803Z",
"data_quote_end": "2021-03-01T16:07:09.3475456Z",
"data_orderbook_start": "2018-11-20T15:24:58.4128803Z",
"data_orderbook_end": "2020-08-05T14:37:20.2695780Z",
"data_trade_start": "2018-11-20T15:25:38.0000000Z",
"data_trade_end": "2021-03-01T16:03:18.0000000Z",
"volume_1hrs": 51.68645899,
"volume_1hrs_usd": 9036.44,
"volume_1day": 465.568863,
"volume_1day_usd": 81396.28,
"volume_1mth": 22528.27638495,
"volume_1mth_usd": 3938661,
"symbol_id_exchange": "USDC_LTC",
"asset_id_base_exchange": "LTC",
"asset_id_quote_exchange": "USDC",
"price_precision": 1e-8,
"size_precision": 1e-8
}
]
- Schema
- Example (from schema)
- Example response
Schema
Array [
]
The symbol identifier.
The exchange identifier.
The symbol type.
The base asset identifier.
The quote asset identifier.
The unit asset identifier.
The contract unit for futures.
The asset used as the unit for futures contract.
The future delivery time for futures contract.
Indicates whether the option type is a call.
The strike price for options.
The contract unit for options.
The exercise style for options.
The expiration time for options.
The delivery time for contracts.
The contract unit for contracts.
The asset used as the unit for contracts.
The contract identifier.
The display name of the contract.
The display description of the contract.
The start date of quote data.
The end date of quote data.
The start date of order book data.
The end date of order book data.
The start date of trade data.
The end date of trade data.
The index identifier.
The display name of the index.
The display description of the index.
The volume in the last 1 hour.
The volume in USD in the last 1 hour.
The volume in the last 1 day.
The volume in USD in the last 1 day.
The volume in the last 1 month.
The volume in USD in the last 1 month.
The price.
The symbol identifier in the exchange.
The base asset identifier in the exchange.
The quote asset identifier in the exchange.
The price precision.
The size precision.
raw_kvp
object
nullable
Not normalized raw kvp data.
[
{
"symbol_id": "string",
"exchange_id": "string",
"symbol_type": "string",
"asset_id_base": "string",
"asset_id_quote": "string",
"asset_id_unit": "string",
"future_contract_unit": 0,
"future_contract_unit_asset": "string",
"future_delivery_time": "2024-10-04T08:51:24.350Z",
"option_type_is_call": true,
"option_strike_price": 0,
"option_contract_unit": 0,
"option_exercise_style": "string",
"option_expiration_time": "2024-10-04T08:51:24.350Z",
"contract_delivery_time": "2024-10-04T08:51:24.350Z",
"contract_unit": 0,
"contract_unit_asset": "string",
"contract_id": "string",
"contract_display_name": "string",
"contract_display_description": "string",
"data_start": "string",
"data_end": "string",
"data_quote_start": "2024-10-04T08:51:24.350Z",
"data_quote_end": "2024-10-04T08:51:24.350Z",
"data_orderbook_start": "2024-10-04T08:51:24.350Z",
"data_orderbook_end": "2024-10-04T08:51:24.350Z",
"data_trade_start": "2024-10-04T08:51:24.350Z",
"data_trade_end": "2024-10-04T08:51:24.350Z",
"index_id": "string",
"index_display_name": "string",
"index_display_description": "string",
"volume_1hrs": 0,
"volume_1hrs_usd": 0,
"volume_1day": 0,
"volume_1day_usd": 0,
"volume_1mth": 0,
"volume_1mth_usd": 0,
"price": 0,
"symbol_id_exchange": "string",
"asset_id_base_exchange": "string",
"asset_id_quote_exchange": "string",
"price_precision": 0,
"size_precision": 0,
"raw_kvp": {}
}
]
[
{
"symbol_id": "KRAKENFTS_PERP_BTC_USD",
"exchange_id": "KRAKENFTS",
"symbol_type": "PERPETUAL",
"asset_id_base": "BTC",
"asset_id_quote": "USD",
"asset_id_unit": "USD",
"future_contract_unit": 1,
"future_contract_unit_asset": "USD",
"data_start": "2019-10-30",
"data_end": "2021-03-03",
"data_quote_start": "2019-10-30T16:53:10.3262317Z",
"data_quote_end": "2021-03-03T13:51:45.6970000Z",
"data_orderbook_start": "2019-10-30T16:53:10.3262317Z",
"data_orderbook_end": "2020-08-05T14:37:32.0080000Z",
"data_trade_start": "2019-10-30T16:38:52.1620000Z",
"data_trade_end": "2021-03-03T13:46:25.7810000Z",
"volume_1hrs": 22897091,
"volume_1hrs_usd": 22897091,
"volume_1day": 459390289,
"volume_1day_usd": 459390289,
"volume_1mth": 12875674995,
"volume_1mth_usd": 12875674995,
"price": 51266,
"symbol_id_exchange": "pi_xbtusd",
"asset_id_base_exchange": "XBT",
"asset_id_quote_exchange": "USD",
"price_precision": 0.1,
"size_precision": 1
},
{
"symbol_id": "POLONIEX_SPOT_LTC_USDC",
"exchange_id": "POLONIEX",
"symbol_type": "SPOT",
"asset_id_base": "LTC",
"asset_id_quote": "USDC",
"data_start": "2018-11-20",
"data_end": "2021-03-01",
"data_quote_start": "2018-11-20T15:24:58.4128803Z",
"data_quote_end": "2021-03-01T16:07:09.3475456Z",
"data_orderbook_start": "2018-11-20T15:24:58.4128803Z",
"data_orderbook_end": "2020-08-05T14:37:20.2695780Z",
"data_trade_start": "2018-11-20T15:25:38.0000000Z",
"data_trade_end": "2021-03-01T16:03:18.0000000Z",
"volume_1hrs": 51.68645899,
"volume_1hrs_usd": 9036.44,
"volume_1day": 465.568863,
"volume_1day_usd": 81396.28,
"volume_1mth": 22528.27638495,
"volume_1mth_usd": 3938661,
"symbol_id_exchange": "USDC_LTC",
"asset_id_base_exchange": "LTC",
"asset_id_quote_exchange": "USDC",
"price_precision": 1e-8,
"size_precision": 1e-8
}
]
- Schema
- Example (from schema)
- Example response
Schema
Array [
]
The symbol identifier.
The exchange identifier.
The symbol type.
The base asset identifier.
The quote asset identifier.
The unit asset identifier.
The contract unit for futures.
The asset used as the unit for futures contract.
The future delivery time for futures contract.
Indicates whether the option type is a call.
The strike price for options.
The contract unit for options.
The exercise style for options.
The expiration time for options.
The delivery time for contracts.
The contract unit for contracts.
The asset used as the unit for contracts.
The contract identifier.
The display name of the contract.
The display description of the contract.
The start date of quote data.
The end date of quote data.
The start date of order book data.
The end date of order book data.
The start date of trade data.
The end date of trade data.
The index identifier.
The display name of the index.
The display description of the index.
The volume in the last 1 hour.
The volume in USD in the last 1 hour.
The volume in the last 1 day.
The volume in USD in the last 1 day.
The volume in the last 1 month.
The volume in USD in the last 1 month.
The price.
The symbol identifier in the exchange.
The base asset identifier in the exchange.
The quote asset identifier in the exchange.
The price precision.
The size precision.
raw_kvp
object
nullable
Not normalized raw kvp data.
[
{
"symbol_id": "string",
"exchange_id": "string",
"symbol_type": "string",
"asset_id_base": "string",
"asset_id_quote": "string",
"asset_id_unit": "string",
"future_contract_unit": 0,
"future_contract_unit_asset": "string",
"future_delivery_time": "2024-10-04T08:51:24.351Z",
"option_type_is_call": true,
"option_strike_price": 0,
"option_contract_unit": 0,
"option_exercise_style": "string",
"option_expiration_time": "2024-10-04T08:51:24.351Z",
"contract_delivery_time": "2024-10-04T08:51:24.351Z",
"contract_unit": 0,
"contract_unit_asset": "string",
"contract_id": "string",
"contract_display_name": "string",
"contract_display_description": "string",
"data_start": "string",
"data_end": "string",
"data_quote_start": "2024-10-04T08:51:24.351Z",
"data_quote_end": "2024-10-04T08:51:24.351Z",
"data_orderbook_start": "2024-10-04T08:51:24.351Z",
"data_orderbook_end": "2024-10-04T08:51:24.351Z",
"data_trade_start": "2024-10-04T08:51:24.351Z",
"data_trade_end": "2024-10-04T08:51:24.351Z",
"index_id": "string",
"index_display_name": "string",
"index_display_description": "string",
"volume_1hrs": 0,
"volume_1hrs_usd": 0,
"volume_1day": 0,
"volume_1day_usd": 0,
"volume_1mth": 0,
"volume_1mth_usd": 0,
"price": 0,
"symbol_id_exchange": "string",
"asset_id_base_exchange": "string",
"asset_id_quote_exchange": "string",
"price_precision": 0,
"size_precision": 0,
"raw_kvp": {}
}
]
[
{
"symbol_id": "KRAKENFTS_PERP_BTC_USD",
"exchange_id": "KRAKENFTS",
"symbol_type": "PERPETUAL",
"asset_id_base": "BTC",
"asset_id_quote": "USD",
"asset_id_unit": "USD",
"future_contract_unit": 1,
"future_contract_unit_asset": "USD",
"data_start": "2019-10-30",
"data_end": "2021-03-03",
"data_quote_start": "2019-10-30T16:53:10.3262317Z",
"data_quote_end": "2021-03-03T13:51:45.6970000Z",
"data_orderbook_start": "2019-10-30T16:53:10.3262317Z",
"data_orderbook_end": "2020-08-05T14:37:32.0080000Z",
"data_trade_start": "2019-10-30T16:38:52.1620000Z",
"data_trade_end": "2021-03-03T13:46:25.7810000Z",
"volume_1hrs": 22897091,
"volume_1hrs_usd": 22897091,
"volume_1day": 459390289,
"volume_1day_usd": 459390289,
"volume_1mth": 12875674995,
"volume_1mth_usd": 12875674995,
"price": 51266,
"symbol_id_exchange": "pi_xbtusd",
"asset_id_base_exchange": "XBT",
"asset_id_quote_exchange": "USD",
"price_precision": 0.1,
"size_precision": 1
},
{
"symbol_id": "POLONIEX_SPOT_LTC_USDC",
"exchange_id": "POLONIEX",
"symbol_type": "SPOT",
"asset_id_base": "LTC",
"asset_id_quote": "USDC",
"data_start": "2018-11-20",
"data_end": "2021-03-01",
"data_quote_start": "2018-11-20T15:24:58.4128803Z",
"data_quote_end": "2021-03-01T16:07:09.3475456Z",
"data_orderbook_start": "2018-11-20T15:24:58.4128803Z",
"data_orderbook_end": "2020-08-05T14:37:20.2695780Z",
"data_trade_start": "2018-11-20T15:25:38.0000000Z",
"data_trade_end": "2021-03-01T16:03:18.0000000Z",
"volume_1hrs": 51.68645899,
"volume_1hrs_usd": 9036.44,
"volume_1day": 465.568863,
"volume_1day_usd": 81396.28,
"volume_1mth": 22528.27638495,
"volume_1mth_usd": 3938661,
"symbol_id_exchange": "USDC_LTC",
"asset_id_base_exchange": "LTC",
"asset_id_quote_exchange": "USDC",
"price_precision": 1e-8,
"size_precision": 1e-8
}
]