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

# Markets

> Price and volume candles for one trading pair on one exchange, in USD and in the raw quote currency.

Use it when the venue matters; for one price per asset across venues use Asset Price.

## Endpoints

| Model                                                        | Access                | Timeseries                                                                                                                    |
| ------------------------------------------------------------ | --------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| [Market (BQEN)](/api-reference/data-api/markets/market-bqen) | Market\_data\_unified | [Batch](/api-reference/data-api/markets/timeseries-bqen), [One series](/api-reference/data-api/markets/timeseries-bqen-by-id) |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/timeseries/bqen/1d?series=100-140-110,10000-140-110&timeframe=7d&selections=close-price,volume" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

See [Batch Get Market timeseries](/api-reference/data-api/markets/timeseries-bqen) for the response and the errors.

## Guides

<CardGroup cols={2}>
  <Card title="Finding an id" icon="key" href="/api-reference/data-api/discovery/finding-an-id">
    Every series key, the table it comes from and the identifiers that resolve to it.
  </Card>

  <Card title="Granularity" icon="clock" href="/getting-started/concepts/granularity">
    Choosing an interval and bounding a time window.
  </Card>

  <Card title="Tabular vs timeseries" icon="book" href="/getting-started/concepts/tabular-vs-timeseries">
    The two model kinds, their URL shapes, and when to reach for each.
  </Card>
</CardGroup>
