You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Token API provides endpoints for retrieving any token, token balance, transfer, and symbol in existence, including full support for native token transfers and balances (fully supports both ERC-20 and ERC-777 tokens).
Endpoint Overview
The Token API supports the following groups of endpoints:
Token Endpoints: Retrieve any token ever created using flexible queries, along with token metadata and symbols.
Owner Endpoints: Retrieve all owners and owner balances for a token (ordered by balance).
Transfer Endpoints: Retrieve all transfers, including mints, sends, and burns, for any token or individual account.
Swap Endpoints: Retrieve all swaps for any token, account, or date range across all decentralized exchanges.
Native Token Endpoints: Retrieve all native token transfers and balances for any account.
The Token Model represents a single NFT token. The Token Model follows the following structure:
Name
Description
Type
contract_address
Contract address of the token
string
name
Name of the token
string
symbol
Symbol of the token
string
decimals
The number of decimals used by the token in user representations.
integer
created_timestamp
The token's timestamp of creation (in ISO-8601 format).
date-time
standard
The standard of the token (ERC-20 or ERC-777).
string
supply
The token's total supply (tokens minted minus tokens burned).
integer
external_url
The token's website URL.
string
image_url
The token's icon image URL.
string
twitter_username
The token's Twitter username.
string
telegram_url
The token's Telegram URL.
string
discord_url
The token's Discord URL.
string
whitepaper_url
The token's whitepaper URL.
string
last_refreshed
The timestamp at which the token was last refreshed by the Transpose backend (in ISO-8601 format).
date-time
Token With Owner Model
View Model Specification
The Token With Owner Model represents a single token with included ownership data (i.e. the owner account and owner's balance). The Token With Owner Model follows the following structure:
Name
Description
Type
contract_address
Contract address of the token
string
name
Name of the token
string
symbol
Symbol of the token
string
decimals
The number of decimals used by the token in user representations.
integer
created_timestamp
The token's timestamp of creation (in ISO-8601 format).
date-time
standard
The standard of the token (ERC-20 or ERC-777).
string
supply
The token's total supply (tokens minted minus tokens burned).
integer
external_url
The token's website URL.
string
image_url
The token's icon image URL.
string
twitter_username
The token's Twitter username.
string
telegram_url
The token's Telegram URL.
string
discord_url
The token's Discord URL.
string
whitepaper_url
The token's whitepaper URL.
string
last_refreshed
The timestamp at which the token was last refreshed by the Transpose backend (in ISO-8601 format).