GET /api/tokens/info/{address}
Token info by address
GET info data from tokens service
Endpoint​
GET https://api.web3identity.com/api/tokens/info/{address}
Parameters​
| Name | In | Type | Required | Description |
|---|---|---|---|---|
address | path | string | âś… | Ethereum address (0x format) |
chain | query | string | ❌ | Blockchain network (ethereum, base, polygon, etc) |
Example Request​
curl -s "https://api.web3identity.com/api/tokens/info/:address" | jq
Responses​
200 Token info​
{
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"totalSupply": "23456789012345678",
"holders": 1234567,
"price": 1,
"marketCap": 23456789012.34,
"volume24h": 5678901234.56
}
400 Bad request - invalid parameters​
{
"example": "response"
}
402 Payment required - free tier exhausted​
{
"example": "response"
}
404 Resource not found​
{
"example": "response"
}
429 Rate Limited​
{
"example": "response"
}
500 Internal Server Error - Something went wrong on our end​
{
"error": "Internal server error",
"code": "INTERNAL_ERROR"
}
Auto-generated from OpenAPI spec