Get ERC20 token metadata by symbol
Get the metadata for a given symbol (name, symbol, decimals, logo)
Path Parameters
symbol string required
Query Parameters
cursor string
The cursor returned in the previous response (used for getting the next page).
limit number
Number of items returned, default: 20
Responses
- 200
Successful
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
cursor string
The cursor returned in the previous response (used for getting the next page)
page number required
Page of results
limit number required
Limit of results
total_items number required
Total returned result items
data object[] required
name string required
The name or title of the token
symbol string required
The symbol of the token
decimals string required
The decimals of the token
contract_address string required
The address of the token
total_supply string required
The total supply the token
description string required
The description the token
icon_url string required
The icon url the token
last_synced_at number required
The time last sync of the token
{
"cursor": "string",
"page": 0,
"limit": 0,
"total_items": 0,
"data": [
{
"name": "string",
"symbol": "string",
"decimals": "string",
"contract_address": "string",
"total_supply": "string",
"description": "string",
"icon_url": "string",
"last_synced_at": 0
}
]
}
Loading...