Mission Control Use Cases
Current Endpoints
All Tokens Metadata
All Coins Metadata
Tokens by Symbol
Coins
ERC-20 Tokens
ERC-20 Tokens Metadata
ERC-20 Transfers
NFTs
NFT Transfers
NFT Metadata
Transactions
Transaction Details
Transaction NFT transfers
Transaction ERC-20 transfers
Protocols
Token Holders
Endpoint: ERC-20 Tokens
The Endpoints ERC-20 Tokens and Coins are publicly available in DEV-ONLY mode limits of 2 requests per 5 seconds. Without any additional efforts you can start integrating these two endpoints, gaining access to all ERC-20 balances across 8 EVM networks.
/tokens/{address}
Returns the balance of ERC-20 tokens for an address across all networks. Limited data such as token lists, token categories, prices and icons provided by CoinGecko.
Example
https://datalayer.decommas.net/datalayer/api/v1/tokens/{address}?api-key={YOUR-API-KEY}
GET-params:
- api-key
- networks (default networks=all). You can pass the names of the networks, for example, for optimism and arbitrum, the request will look like this:
- https://datalayer.decommas.net/datalayer/api/v1/tokens/{address}?networks=optimism,arbitrum&api-key={YOUR-API-KEY}
- verified (default is verified=false). If true, it returns only verified tokens. If false, it returns all tokens.
- limit - parameter for pagination (default 20, min 20, max 100)
- offset - parameter for pagination (default 0)
Response example (ALL FIELDS ARE MANDATORY)
{
"count": 2,
"status": 200,
"result": [
{
"chain_name": "mainnet",
"chain_id": 1,
"address": "0x228ba514309ffdf03a81a205a6d040e429d6e80c",
"name": "Global Social Chain",
"decimals": 18,
"symbol": "GSC",
"logo_url": "https://assets.coingecko.com/coins/images/4304/large/global-social-chain.png?1547742843",
"actual_price": "0.00147295",
"is_verified": true,
"is_stable": false,
"amount": "20000000000000000000"
},
{
"chain_name": "mainnet",
"chain_id": 1,
"address": "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1",
"name": "Concentrated Voting Power",
"decimals": 18,
"symbol": "CVP",
"logo_url": "https://assets.coingecko.com/coins/images/12266/large/Powerpool.jpg?1598621373",
"actual_price": "0.433299",
"is_verified": true,
"is_stable": false,
"amount": "42130000000000000000"
}
]
}