Get CoinGecko Asset
Endpoint
Section titled “Endpoint”GET /api/coingecko/assetTry it
Section titled “Try it”Parameters
Section titled “Parameters”| Name | In | Type | Required | Description |
|---|---|---|---|---|
id | query | string | ✅ | integer |
Responses
Section titled “Responses”200 — Asset retrieved successfully
Section titled “200 — Asset retrieved successfully”Media: application/json
Schema
{ "type": "object", "required": [ "asset" ], "properties": { "asset": { "type": "object", "required": [ "id", "name", "symbol", "decimals", "totalSupply", "circulatingSupply", "maxSupply" ], "properties": { "circulatingSupply": { "type": "string" }, "decimals": { "type": "integer", "format": "int32" }, "id": { "type": "string" }, "maxSupply": { "type": "string" }, "name": { "type": "string" }, "symbol": { "type": "string" }, "totalSupply": { "type": "string" } } } }}Examples
{ "Result": { "value": "{}" }}400 — Bad request
Section titled “400 — Bad request”404 — Asset not found
Section titled “404 — Asset not found”500 — Internal server error
Section titled “500 — Internal server error”Authentication
Section titled “Authentication”All Taostats API requests require an Authorization header containing your API key. See Getting Started.