# Polymarket Premium Bundle — Top Market + Odds + Order Book + Trades in One Call

> Polymarket Premium Bundle — Top Market + Odds + Order Book + Trades in One Call is a paid API for AI agents from predict.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a bundled snapshot of the top Polymarket prediction market matching a query: live odds, order-book depth, and recent trades — all in a single API call.

## Facts

- Endpoint: GET https://predict.gocreativeai.com/v1/predict/360/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-premium-bundle-top-market-odds-order-book-trades-in-one-call-719c3367
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rKkGxO3OMaDSKSL9n3G31

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 polymarket-premium-bundle-top-market-odds-order-book-trades-in-one-call-719c3367
```

Example prompt: Give me the top Polymarket market for 'US election 2025', including the live YES/NO odds, full order-book depth, and the most recent trades — all at once.

## When to prefer this

Use this endpoint when your agent needs a complete Polymarket snapshot — odds, order-book depth, and recent trades — for a single market in one call, instead of making 3-4 separate requests. Ideal for trading agents, forecasting agents, or any workflow where latency reduction matters and you need all signal types simultaneously.

## Known failure modes

- No market found for the given keyword — empty or null market result
- Polymarket API unavailable — upstream timeout or error
- Invalid or missing path parameter var1 — 400 or 422 response
- Payment not processed — 402 response if USDC payment fails
- Rate limiting or quota exceeded on the underlying Polymarket CLOB data

## How this service works

Premium Polymarket bundle: top market + live odds + order-book depth + recent trades in 1 call. Trading & forecasting agents skip 4 calls. Keyless, pay-per-call USDC on Base/Solana, no API key, no signup.

## Output

A single bundled JSON response containing: the top matching Polymarket market (question, metadata), current implied YES/NO probabilities, live bid/ask order-book depth for outcome tokens, and a list of recent trade fills (side, price, size, timestamp).

## 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/polymarket-premium-bundle-top-market-odds-order-book-trades-in-one-call-719c3367/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)
