Get Coins by Network
Retrieve virtual assets (cryptocurrencies) available on a specific blockchain network.
Endpoint
GET /coins/network/{blockchain}
Headers
| Header | Value | Required |
|---|---|---|
x-api-key | {your-api-key} | Yes |
x-secret-key | {your-secret-key} | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
blockchain | string | Yes | Network identifier (e.g., "ethereum", "solana", "bitcoin") |
Example Request
curl -X GET "{{baseUrl}}/coins/network/ethereum" \
-H "x-api-key: {your-api-key}" \
-H "x-secret-key: {your-secret-key}"
Response
Success (200 OK)
{
"success": true,
"data": [
{
"id": "0dog",
"symbol": "0dog",
"name": "Bitcoin Dogs",
"platforms": {
"ethereum": "0xaa6624d7363ef8284aa8ce4e18146ded5f421b2c"
},
"enabled": true,
"createdAt": "2025-05-23T10:15:20.745Z",
"updatedAt": "2025-05-23T19:59:57.964Z"
},
{
"id": "0-knowledge-network",
"symbol": "0kn",
"name": "0 Knowledge Network",
"platforms": {
"ethereum": "0x4594cffbfc09bc5e7ecf1c2e1c1e24f0f7d29036"
},
"enabled": true,
"createdAt": "2025-05-23T10:15:20.745Z",
"updatedAt": "2025-05-23T19:59:57.964Z"
},
{
"id": "1art",
"symbol": "1art",
"name": "OneArt",
"platforms": {
"fantom": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e",
"ethereum": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e",
"binance-smart-chain": "0xd3c325848d7c6e29b574cb0789998b2ff901f17e"
},
"enabled": true,
"createdAt": "2025-05-23T10:15:20.745Z",
"updatedAt": "2025-05-23T19:59:57.964Z"
},
{
"id": "ethereum",
"symbol": "eth",
"name": "Ethereum",
"platforms": {
"ethereum": "0x0000000000000000000000000000000000000000"
},
"enabled": true,
"createdAt": "2025-05-23T10:15:20.745Z",
"updatedAt": "2025-05-23T19:59:57.964Z"
}
]
}
Error (404 Not Found)
{
"success": false,
"error": "Network not found",
"code": "NETWORK_NOT_FOUND"
}
Example Requests
Get Ethereum tokens
curl -X GET "{{baseUrl}}/coins/network/ethereum" \
-H "x-api-key: {your-api-key}" \
-H "x-secret-key: {your-secret-key}"
Get Solana tokens
curl -X GET "{{baseUrl}}/coins/network/solana" \
-H "x-api-key: {your-api-key}" \
-H "x-secret-key: {your-secret-key}"
Get Binance Smart Chain tokens
curl -X GET "{{baseUrl}}/coins/network/binance-smart-chain" \
-H "x-api-key: {your-api-key}" \
-H "x-secret-key: {your-secret-key}"
Get Bitcoin assets
curl -X GET "{{baseUrl}}/coins/network/bitcoin" \
-H "x-api-key: {your-api-key}" \
-H "x-secret-key: {your-secret-key}"
Supported Networks
Common blockchain identifiers:
ethereum- Ethereum mainnetsolana- Solana blockchainbitcoin- Bitcoin networkbinance-smart-chain- Binance Smart Chainpolygon-pos- Polygonbase- Base networkarbitrum-one- Arbitrum Oneavalanche- Avalanche C-Chainfantom- Fantom Operathe-open-network- TON blockchaintron- TRON networkxdai- Gnosis Chainklay-token- Klaytn
Use Cases
- Network-Specific Trading: Display only assets available on the selected blockchain
- Wallet Integration: Show tokens for the user's connected network
- Cross-Chain Analysis: Compare token availability across different networks
- Transaction Planning: Find available tokens before initiating transfers on a specific network
- Platform-Specific Views: Create network-specific token lists for DeFi applications
Notes
- This endpoint returns only coins that exist on the specified network
- Multi-chain tokens will show all their platform addresses in the
platformsobject - Native coins (like ETH on Ethereum) may use the zero address or have a special designation
- The response includes only coins with contracts or native support on the specified blockchain