# GET /token/market/{id}

**Operation ID:** `GetTokenCurrentMarketData`

Get current market data for a token

Returns current market data for a token including price, market cap, volume, and supply information.

## Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `id` | path | string | Yes | The CoinGecko pricing ID of the token. Example: `"usd-coin"` |

## Responses

- **200**: OK
  **Schema**: ([TokenMarketData](https://arkm.com/llms/schemas/TokenMarketData.md))

**Example:**
```json
{
  "allTimeHigh": 1.043,
  "allTimeLow": 0.877647,
  "circulatingSupply": 73354602419.50252,
  "fullyDilutedValue": 73342671855.44943,
  "marketCap": 73340976893,
  "maxPrice24h": 0.999979,
  "minPrice24h": 0.999745,
  "price": 0.999831,
  "price180dAgo": 0.999812,
  "price24hAgo": 0.999797,
  "price30dAgo": 0.999724,
  "price7dAgo": 0.999852,
  "totalSupply": 73355068862.08713,
  "totalVolume": 7539296441
}
```
- **400**: Bad Request
- **500**: Internal Server Error

## Example

```bash
curl -X GET "https://api.arkm.com/token/market/usd-coin" \
  -H "API-Key: YOUR_API_KEY"
```
