Prediction Markets
Limitless prediction-market lists, intelligence and alpha feeds.
Limitless prediction-market lists, intelligence and alpha feeds. 3 endpoints, each gated by the x402 payment protocol and settled in USDC. Connect the same endpoints over the MCP server for agent-to-agent use.
Prediction Market — Intel
AI analysis of a single Limitless prediction market. Combines market data with X/news sentiment to return YES/NO/PASS recommendation, confidence, thesis, and key signals.
POST /ai/prediction-market/limitless/market-intelPrice
$0.05
Network
Solana
x402
v2
Request parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
market_id | string | Yes | Limitless market slug (from market-list) |
Response
Returns market summary, recommendation (YES/NO/PASS), confidence (0–1), thesis, and key_signals[]
Example
curl -X POST "https://api.xona-agent.com/ai/prediction-market/limitless/market-intel" \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-payload>" \
-d '{
"market_id": "will-btc-hit-100k-by-eoy"
}'Prediction Markets — Alpha Feed
Scan top active Limitless prediction markets, run AI intel on each, return ranked opportunities sorted by edge.
POST /ai/prediction-market/limitless/alpha-feedPrice
$0.10
Network
Solana
x402
v2
Request parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
category_id | number | No | Numeric Limitless category id (omit for all categories) |
limit | number | No | Number of opportunities to return (1–20, default 10) |
min_confidence | number | No | Minimum intel confidence (0–1) to include |
Response
Returns opportunities[] of {market_id, title, recommendation, confidence, edge_bps, thesis_short} sorted by edge desc
Example
curl -X POST "https://api.xona-agent.com/ai/prediction-market/limitless/alpha-feed" \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-payload>" \
-d '{
"category_id": "1",
"limit": "10",
"min_confidence": "0.5"
}'Prediction Markets — List
List active prediction markets on Limitless Exchange (Base) with optional category filter and pagination.
POST /ai/prediction-market/limitless/market-listPrice
$0.01
Network
Solana
x402
v2
Request parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
category_id | number | No | Numeric Limitless category id (omit for all categories) |
limit | number | No | Page size (1–25, default 25; upstream cap is 25) |
page | number | No | 1-indexed page number (default 1) |
Response
Returns markets[] of {id, slug, title, category, category_id, deadline, yes_price, no_price, volume, volume_raw, liquidity, collateral_token} plus page, limit, next_page
Example
curl -X POST "https://api.xona-agent.com/ai/prediction-market/limitless/market-list" \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-payload>" \
-d '{
"category_id": "1",
"limit": "25",
"page": "1"
}'