Get ERC20 token metadata by contract
Get the metadata for a given token contract address (name, symbol, decimals, logo)
Path Parameters
address string required
The address of contract
Responses
- 200
Successful
application/json
Schema
Example (from schema)
Schema
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
{
"name": "string",
"symbol": "string",
"decimals": "string",
"contract_address": "string",
"total_supply": "string",
"description": "string",
"icon_url": "string",
"last_synced_at": 0
}
Loading...