## finance/history

`GET /v1/finance/history`

OHLCV bars for one instrument over a range at an interval.

*Price history*

| Parameter | Required | Description |
| --- | --- | --- |
| `symbol` | yes | Ticker symbol — e.g. `AAPL` |
| `interval` | no | 1m, 2m, 5m, 15m, 30m, 60m, 90m, 1h, 1d, 5d, 1wk, 1mo or 3mo — e.g. `1d` |
| `range` | no | 1d, 5d, 7d, 15d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd or max — e.g. `1mo` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 1 credit at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/finance/history?symbol=AAPL" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "count": 0,
  "currency": "example",
  "exchange": "example",
  "has_more": false,
  "interval": "example",
  "items": [
    {
      "adjusted_close": 0,
      "close": 0,
      "date": "2026-09-01T12:00:00Z",
      "high": 0,
      "low": 0,
      "open": 0,
      "time": "example",
      "volume": 0
    }
  ],
  "name": "example",
  "previous_close": 0,
  "price": 0,
  "range": "example",
  "symbol": "example",
  "timezone": "example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/finance/history#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/finance/history.json)
