# Predict – Polymarket Event Odds, Order Books & Trades

> Predict – Polymarket Event Odds, Order Books & Trades is a paid API for AI agents from predict.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-10).

Fetches live prediction-market odds, order-book depth, and recent trades for a specific Polymarket event by event ID or slug

## Facts

- Endpoint: GET https://predict.gocreativeai.com/v1/predict/events/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predict-polymarket-event-odds-order-book-trades-by-event-id-46935b25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z4OXJ5xMK_U7WMpO4LeEZ

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 predict-polymarket-event-odds-order-book-trades-by-event-id-46935b25
```

Example prompt: What are the current Polymarket odds and order book for the 2024 US presidential election event? Pull the live YES/NO probabilities and recent trades for that market.

## When to prefer this

Use this endpoint when an agent needs live, per-event prediction-market data from Polymarket — including current odds, order-book depth, and trade history — for a specific known event ID or slug. Prefer this over a keyword search endpoint when you already have the event identifier. Ideal for forecasting agents, trading bots, and research pipelines that need real-time market-implied probabilities without requiring API key management.

## Known failure modes

- Invalid or unknown event ID/slug returns 404 or empty result
- Payment failure (insufficient USDC balance) returns 402 Payment Required
- Network timeout if Polymarket data feed is slow
- Malformed query parameter returns 400 Bad Request
- Event has been resolved/closed — may return stale or no active order book data

## How this service works

Predict gives AI agents live prediction-market odds, order-book depth and recent trades across thousands of markets (Polymarket) in one keyless call. Pay per call in USDC — no demo, no API key. For forecasting, trading and research agents.

## Output

Returns live prediction-market data for the specified event including current YES/NO odds (implied probabilities), order-book bid/ask depth across outcome tokens, and a feed of recent trades — sourced in real time from Polymarket's CLOB.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predict-polymarket-event-odds-order-book-trades-by-event-id-46935b25/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from predict.gocreativeai.com](https://www.zero.xyz/host/predict.gocreativeai.com/llms.txt)
