# Get a single trending token by ID Returns a single trending token, identified by a specific ID (e.g., "bitcoin", "ethereum"). Endpoint: GET /token/trending/{id} Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `id` (string, required) The pricing ID (CoinGecko ID). ## Response 200 fields (application/json): - `name` (string,null) Example: "Solana" - `symbol` (string,null) Example: "sol" - `pricingID` (string) Example: "solana" - `price` (number) Example: 181.66 - `price24hAgo` (number) Example: 181.86 - `volume24h` (number) Example: 5669421323 - `allTimeHigh` (number) Example: 293.31 - `allTimeLow` (number) Example: 0.500801 - `circulatingSupply` (number,null) Example: 540069217.3525627 ## Response 400 fields (application/json): - `error` (string) Example: "Bad request" ## Response 401 fields (application/json): - `error` (string) Example: "API key missing or invalid" ## Response 404 fields (application/json): - `error` (string) Example: "Not found"