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

# Market Data

> Quotes, candles, market status, movers, and trading calendars

Use Financial Context's `/api/market-data` endpoints for read-only market data.

## Realtime Quotes

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/quote?symbols=AAPL.US,MSFT.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## Static Security Information

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/quote/static_info?symbols=AAPL.US,MSFT.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

## Candlesticks

```bash theme={null}
curl "https://openapi.fcontext.com/api/market-data/quote/AAPL.US/history_candlestick?period=day&count=100&adjust=none" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```

Common parameters:

| Parameter      | Description                                                       |
| -------------- | ----------------------------------------------------------------- |
| `period`       | `1m`, `5m`, `15m`, `30m`, `1h`, `day`, `week`, `month`, or `year` |
| `count`        | Number of records for offset mode                                 |
| `start`, `end` | Date range mode, formatted as `YYYY-MM-DD`                        |
| `adjust`       | `none` or `forward`                                               |

## Market State

```bash theme={null}
# Market status
curl "https://openapi.fcontext.com/api/market-data/market/status" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"

# Top movers
curl "https://openapi.fcontext.com/api/market-data/market/top_movers?market=US&count=20" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"

# Trading days
curl "https://openapi.fcontext.com/api/market-data/market/trading_days?market=US&start=2026-01-01&end=2026-01-31" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
```
