# Get token metadata. `GET` `https://api.unusualwhales.com/api/crypto/token/{token}` Returns token metadata for a given token address. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `token` | string | Yes | | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `data` | array[Crypto API Token Metadata] | | | `next_token` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/crypto/token/{token}" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/crypto/token/{token}", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "address": "So11111111111111111111111111111111111111112", "circulating_supply": "94321.00", "decimals": 9, "fdv": "94321.00", "holder": 93210 } ], "next_token": "QEREAFDFEEE=" } ```