> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dexutils.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Token Market Performance

> Retrieve the latest market performance metrics for a token, including its current price, market capitalization, and price changes across multiple time periods.

```http theme={null}
GET /tokens/{address}/market_performance
```

### Path Parameters

<ParamField path="address" type="string" required>
  Token contract address.
</ParamField>

### **Query Parameters**

<ParamField query="chain" type="string" required>
  Blockchain network where the token is deployed.
</ParamField>

### Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  # Replace with your actual API key from the DEXUtils platform
  curl "https://api.dexutils.io/tokens/0x6982508145454ce325ddbe47a25d4ec3d2311933/market_performance?chain=ethereum" \
    -H "API-KEY: apikey"
  ```

  ```python Python theme={null}
  import requests

  # Replace with your actual API key from the DEXUtils platform
  address = "0x6982508145454ce325ddbe47a25d4ec3d2311933"
  url = f"https://api.dexutils.io/v1/tokens/{address}/market_performance"
  headers = {"API-KEY": "apikey"}
  params = {"chain": "ethereum"}

  response = requests.get(url, headers=headers, params=params)
  res = response.json()
  ```
</CodeGroup>

***

### **Response Fields**

<ResponseField name="current_price" type="float">
  Current token price in USD.
</ResponseField>

<ResponseField name="market_cap" type="float">
  Current market capitalization in USD.
</ResponseField>

<ResponseField name="high_price_24h" type="float">
  Highest token price in the last 24 hours.
</ResponseField>

<ResponseField name="low_price_24h" type="float">
  Lowest token price in the last 24 hours.
</ResponseField>

<ResponseField name="price_change_24h" type="float">
  Absolute price change over the last 24 hours.
</ResponseField>

<ResponseField name="price_change_percentage_24h" type="float">
  Percentage price change over the last 24 hours.
</ResponseField>

<ResponseField name="price_change_percentage_7d" type="float">
  Percentage price change over the last 7 days.
</ResponseField>

<ResponseField name="price_change_percentage_14d" type="float">
  Percentage price change over the last 14 days.
</ResponseField>

<ResponseField name="price_change_percentage_30d" type="float">
  Percentage price change over the last 30 days.
</ResponseField>

<ResponseField name="price_change_percentage_60d" type="float">
  Percentage price change over the last 60 days.
</ResponseField>

<ResponseField name="price_change_percentage_1y" type="float">
  Percentage price change over the last year.
</ResponseField>

<ResponseField name="market_cap_change_24h" type="float">
  Absolute market capitalization change over the last 24 hours.
</ResponseField>

<ResponseField name="market_cap_change_percentage_24h" type="float">
  Percentage market capitalization change over the last 24 hours.
</ResponseField>

### Example Response

```json Example Response theme={null}
{
    "current_price": 2.83e-06,
    "market_cap": 1191201708,
    "high_price_24h": 2.94e-06,
    "low_price_24h": 2.82e-06,
    "price_change_24h": -1.10796043861e-07,
    "price_change_percentage_24h": -3.76521,
    "price_change_percentage_7d": -7.69095,
    "price_change_percentage_14d": 0.25143,
    "price_change_percentage_30d": 3.2087,
    "price_change_percentage_60d": -7.04222,
    "price_change_percentage_1y": -72.59618,
    "market_cap_change_24h": -44091540.201931,
    "market_cap_change_percentage_24h": -3.56932
}
```
