Supported assets
GET/assets/
Get the list of all supported assets.
Request
Responses
- 200
The list of all supported assets including their id, name and symbol.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- Array [
- ]
- Array [
- ]
- ]
from_assets object[]
name string
symbol string
precision integer
asset_type string
hash string
cg_id string
network string
Possible values: [liquid
, bitcoin
, ethereum
, polygon
, tron
]
to_assets object[]
name string
symbol string
precision integer
asset_type string
hash string
cg_id string
network string
Possible values: [liquid
, bitcoin
, ethereum
, polygon
, tron
]
[
{
"from_assets": [
{
"name": "string",
"symbol": "string",
"precision": 0,
"asset_type": "string",
"hash": "string",
"cg_id": "string",
"network": "liquid"
}
],
"to_assets": [
{
"name": "string",
"symbol": "string",
"precision": 0,
"asset_type": "string",
"hash": "string",
"cg_id": "string",
"network": "liquid"
}
]
}
]
[
{
"from_assets": [
{
"name": "Bitcoin",
"symbol": "BTC",
"precision": 8,
"asset_type": "crypto",
"hash": "",
"cg_id": "bitcoin",
"network": "bitcoin"
},
{
"name": "Euro",
"symbol": "EUR",
"precision": 2,
"asset_type": "fiat",
"hash": "",
"cg_id": "eur",
"network": null
}
]
},
{
"to_assets": [
{
"name": "Bitcoin (Liquid)",
"symbol": "USDT",
"precision": 8,
"asset_type": "crypto",
"hash": "",
"cg_id": "bitcoin",
"network": "liquid"
},
{
"name": "Tether (Polygon ERC20)",
"symbol": "USDT-P",
"precision": 6,
"asset_type": "crypto",
"hash": "",
"cg_id": "tether",
"network": "polygon"
}
]
}
]
Loading...