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

# Market Data APIs

> Fetch ticks and OHLCV candles by symbol and time range

<div style={{ width: '100%', height: 240, marginBottom: 32, borderRadius: 16, overflow: 'hidden', position: 'relative' }}>
  <video style={{ width: '100%', height: '100%', objectFit: 'cover', filter: 'sepia(0.3) saturate(1.5) hue-rotate(-14deg) brightness(0.72) contrast(1.12)' }} autoPlay loop muted playsInline>
    <source src="https://mintcdn.com/vero-fa5575b5/G_sL_RHXpWEXOwUp/images/bg_video.mp4?fit=max&auto=format&n=G_sL_RHXpWEXOwUp&q=85&s=f731a6a676fb99a2368193fbaf3281ee" type="video/mp4" data-path="images/bg_video.mp4" />
  </video>
</div>

<div style={{ width: '100%', height: 4, marginBottom: 24, borderRadius: 2, background: 'rgba(0,0,0,0.08)' }}>
  <div style={{ width: '62.5%', height: '100%', borderRadius: 2, background: 'linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-light) 50%, var(--accent-dark) 100%)' }} />
</div>

Market Data APIs provide trade and candle data for charting, analytics and research workflows.

<CardGroup cols={2}>
  <Card title="Ticks" icon="chart-line">
    Fetch trade history by symbol and time range.
  </Card>

  <Card title="Candles" icon="chart-column">
    Fetch OHLCV candles by symbol, resolution and time range.
  </Card>
</CardGroup>

## Endpoints

| Endpoint          | Purpose                                            |
| ----------------- | -------------------------------------------------- |
| `GET /v1/ticks`   | Trade ticks by symbol and time range               |
| `GET /v1/candles` | OHLCV candles by symbol, resolution and time range |

## Supported candle resolutions

| Group            | Resolution                    |
| ---------------- | ----------------------------- |
| Minutes          | `1m`, `5m`, `15m`, `30m`      |
| Hours            | `1h`, `2h`, `4h`, `6h`, `12h` |
| Higher timeframe | `1d`, `1w`                    |

## Try it

<CardGroup cols={2}>
  <Card title="List ticks" icon="play" href="/en/apis/market/list-ticks">
    Open the playground to query tick history.
  </Card>

  <Card title="List candles" icon="play" href="/en/apis/market/list-candles">
    Open the playground to query OHLCV candles.
  </Card>
</CardGroup>
