---
title: "Get Limitless Markets"
method: GET
path: "/v2/limitless/markets"
tags: ["limitless"]
---

# Get Limitless Markets

`GET /v2/limitless/markets`

List Limitless markets with filtering and sorting.

Returns markets from the Limitless prediction market platform with support for:
- Status filtering (open, closed)
- Trade type filtering (amm, clob)
- Text search in titles
- Category and tag filtering
- Volume and open interest thresholds
- Multiple sort options
- Cursor-based pagination via pagination_key

Prices are normalized to 0-1 range.

## Query parameters

- `status` 'open' | 'closed'
- `trade_type` 'amm' | 'clob'
- `search` string, nullable — Search in title (minimum 3 characters)
- `categories` string[], nullable — Filter by category(s)
- `tags` string[], nullable — Filter by tag(s)
- `min_volume` number, nullable — Minimum volume (USD)
- `min_open_interest` number, nullable — Minimum open interest (USD)
- `condition_id` string[], nullable — Filter by condition ID(s)
- `market_slug` string[], nullable — Filter by market slug(s)
- `predexon_id` string[], nullable — Filter by predexon ID(s)
- `token_id` string[], nullable — Filter by token ID(s)
- `sort` 'volume' | 'open_interest' | 'liquidity' | 'price_desc' | 'price_asc' | 'expiration' | 'created' | 'created_asc'
- `limit` integer — Number of markets to return
- `pagination_key` string, nullable — Cursor for next page (from previous response)

## Response `200`

Successful Response

- LimitlessMarketsResponse — Response for Limitless markets list endpoint.
  - `markets` LimitlessMarket[], required
    - `condition_id` string, required
    - `market_id` integer, nullable
    - `market_slug` string, required
    - `title` string, required
    - `description` string
    - `status` string, required
    - `trade_type` string, required
    - `outcomes` LimitlessOutcome[], required
      - `label` string, required
      - `token_id` string
      - `predexon_id` string
      - `price` number, nullable
    - `total_volume_usd` number
    - `open_interest_usd` number, nullable — Open interest in USD. Null for Limitless CLOB markets because Limitless currently exposes OI only for AMM markets.
    - `liquidity_usd` number
    - `image_url` string
    - `categories` string[]
    - `tags` string[]
    - `collateral` LimitlessCollateral, required — Collateral token info for a Limitless market.
      - `address` string
      - `symbol` string
      - `decimals` integer
    - `market_address` string, nullable
    - `exchange_address` string, nullable
    - `expired` boolean
    - `winning_outcome` integer, nullable
    - `payout_numerators` integer[]
    - `resolution_block` integer, nullable
    - `resolution_tx` string, nullable
    - `expiration_time` string, nullable — ISO 8601 timestamp
    - `created_time` string, nullable — ISO 8601 timestamp
    - `updated_time` string, nullable — ISO 8601 timestamp
  - `pagination` CursorPagination, required — Cursor-based pagination for endpoints that don't support offset.
    - `limit` integer, required — Requested limit
    - `count` integer, required — Number of items in current response
    - `pagination_key` string, nullable — Base64-encoded cursor for next page
    - `has_more` boolean, required — Whether there are more items available

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/predexon/apis/predexon-api.md) · [All operations](https://skmtc.net/predexon/apis/predexon-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/predexon/predexon-api/revisions/80a306fbdb39/schema)
