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

# Markets

# Realtime Markets

**Route:** `GET /api/v1/markets`

This route serves market views. The current implementation supports a live matched view from the engine and a resolving view from Redis.

## Query Parameters

* `view`: defaults to `catalog`; notable live values are `matched` and `resolving`
* `source`
* `category`
* `search`
* `sort`
* `order`
* `limit`
* `offset`

## Example

```http theme={null}
GET /api/v1/markets?view=matched&source=kalshi&limit=100
```

## Current Notes

* `view=matched` is the most complete live path right now.
* `view=resolving` reads a Redis-backed slice.
* Other views are still stubbed in the current implementation and should not be sold as complete until finished.
