# Limitless Exchange Active Prediction Markets

> Limitless Exchange Active Prediction Markets is a paid API for AI agents from 2s.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches active prediction markets from Limitless Exchange (on-chain, Base network) with live YES/NO prices, volume, liquidity, and metadata

## Facts

- Endpoint: GET https://2s.io/api/predict/limitless-markets
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/limitless-exchange-active-prediction-markets-5342274c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M9xObD5He7AzqGnruzbQl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability limitless-exchange-active-prediction-markets-5342274c
```

Example prompt: Show me the top 20 active prediction markets on Limitless Exchange right now, including their live YES and NO prices, volume, and when they expire.

## When to prefer this

Use this endpoint when you need on-chain prediction market data specifically from Limitless Exchange on Base network, particularly for cross-venue comparison alongside Polymarket and Kalshi, or when you need keyless on-chain market data with live bid/ask prices.

## Known failure modes

- limit parameter out of range (must be 1–50) returns validation error
- no active markets available returns empty list
- network or on-chain data unavailability may return 5xx error
- payment failure (x402) if USDC balance insufficient

## How this service works

Active prediction markets on Limitless Exchange (on-chain, Base; keyless). Each market: conditionId, title, slug, description, status, live YES/NO prices, volume, liquidity, collateral token, expiration, and categories/tags. A second venue alongside the Polymarket (predict.markets) and Kalshi (predict.kalshi-markets) clusters — for cross-venue prediction-market coverage.

## Output

A list of up to 50 active prediction markets from Limitless Exchange, each containing: conditionId, title, slug, description, status, live YES/NO prices, trading volume, liquidity depth, collateral token, expiration timestamp, and category/tag labels.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1,
       "description": "Max markets (default 20)."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/limitless-exchange-active-prediction-markets-5342274c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
