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

# Exchange Region

> Trade volume in USD and trade count summed across the exchanges in each region, with Decentralized for exchanges without a jurisdiction. Each series is one region, keyed by its name.

|                  |                                                                                                                 |
| ---------------- | --------------------------------------------------------------------------------------------------------------- |
| Access           | Market\_data\_unified                                                                                           |
| Timeseries model | `exchange-region`: intervals `1d`, `1h`, series key `region` (Region), series must be named (up to 20 per call) |

## Endpoints

<CardGroup cols={2}>
  <Card title="Batch Get Region timeseries" icon="arrow-right" href="/api-reference/data-api/exchanges/timeseries-exchange-region">
    Up to 20 series in one request, named by Region in `series`.
  </Card>

  <Card title="Get Region timeseries" icon="arrow-right" href="/api-reference/data-api/exchanges/timeseries-exchange-region-by-id">
    One series over a time window, keyed by its Region.
  </Card>
</CardGroup>

## Metrics

2 metrics. Use the `Field` value in `selections`; every point starts with the timestamp and continues in this order.

| Field         | Name        | Type    | Unit | Description                             |
| ------------- | ----------- | ------- | ---- | --------------------------------------- |
| `volume`      | Volume      | float64 |      | The trade volume on the exchange in USD |
| `trade-count` | Trade Count | float64 |      | The number of trades on the exchange    |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/timeseries/exchange-region/1d/Asia?timeframe=7d&selections=volume,trade-count" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

See [Get Region timeseries](/api-reference/data-api/exchanges/timeseries-exchange-region-by-id) for the response and the errors.
