> ## 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 Country

> Trade volume in USD and trade count summed across the exchanges domiciled in each country. Each series is one country, keyed by its English name.

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

## Endpoints

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

  <Card title="Get Country timeseries" icon="arrow-right" href="/api-reference/data-api/exchanges/timeseries-exchange-country-by-id">
    One series over a time window, keyed by its Country.
  </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-country/1d/United%20States?timeframe=7d&selections=volume,trade-count" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

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