Chains and Tokens Reference
Overview
Chains
List All Supported Chains
GET /api/public/chainsParameter
Type
Default
Description
# Get all chains
curl https://api.unter.tech/api/public/chains
# Get all chains with their tokens
curl https://api.unter.tech/api/public/chains?include_tokens=true{
"data": [
{
"id": 1,
"slug": "ethereum",
"name": "Ethereum",
"symbol": "ETH",
"chain_id": 1,
"type": "evm",
"explorer_url": "https://etherscan.io",
"is_active": true,
"is_testnet": false
},
{
"id": 2,
"slug": "polygon",
"name": "Polygon",
"symbol": "MATIC",
"chain_id": 137,
"type": "evm",
"explorer_url": "https://polygonscan.com",
"is_active": true,
"is_testnet": false
},
{
"id": 3,
"slug": "solana",
"name": "Solana",
"symbol": "SOL",
"chain_id": null,
"type": "solana",
"explorer_url": "https://explorer.solana.com",
"is_active": true,
"is_testnet": false
}
]
}Get Single Chain Details
Parameter
Type
Description
Parameter
Type
Default
Description
Tokens
List Tokens for a Chain
Parameter
Type
Description
Parameter
Type
Default
Description
Understanding Chain Types
EVM Chains
Solana
Understanding Token Types
Native Tokens
Token Contracts
Stablecoins
Best Practices
1. Cache Chain and Token Data
2. Validate Chain/Token Combinations
Last updated

