# Seerium Polymarket Prediction Market Scan

> Seerium Polymarket Prediction Market Scan is a paid API for AI agents from api.seerium.xyz, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-15).

Scans Polymarket prediction markets and returns ranked trading opportunities with market snapshots, order books, Seerium signals, and scored opportunity rankings.

## Facts

- Endpoint: GET https://api.seerium.xyz/v1/prediction/scan
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-seerium-xyz-ea66b5eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AKA2sch1MAxlN7H0xlxa8

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 api-seerium-xyz-ea66b5eb
```

Example prompt: Scan Polymarket right now and show me the top 5 ranked trading opportunities and 10 market snapshots — I want to see which prediction markets have the best signals and liquidity.

## When to prefer this

Use this endpoint when an agent needs a broad, ranked scan of Polymarket prediction markets with Seerium intelligence layered on top — ideal for discovering high-opportunity trades, monitoring market signals, or ingesting order book context without manually querying individual markets. Prefer over raw Polymarket APIs when you want pre-ranked, signal-enriched output ready for agent consumption.

## Known failure modes

- No liquid markets available — returns empty opportunities list
- Polymarket data feed delay — snapshots may be stale
- Invalid limitSnapshots or limitOpportunities values below minimum of 1 — schema validation error
- Payment not fulfilled (x402) — returns 402 Payment Required before data is served
- Rate limit exceeded — too many calls in a short window

## How this service works

Crypto and prediction market intelligence through x402.

## Output

Returns a structured payload containing Polymarket market snapshots (up to limitSnapshots), order book data, Seerium-generated trading signals with confidence scores, and a ranked list of prediction-market opportunities (up to limitOpportunities) filtered by liquidity, spread, and signal strength.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limitSnapshots": {
       "type": "number",
       "minimum": 1,
       "description": "Optional maximum Polymarket prediction-market snapshots to return."
      },
      "limitOpportunities": {
       "type": "number",
       "minimum": 1,
       "description": "Optional maximum prediction-market opportunities to return."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "scope": "prediction",
   "markets": 745,
   "warnings": [],
   "snapshots": [
    {
     "books": {
      "poly_no_token": {
       "asks": [
        {
         "size": 9100,
         "price": 0.53
        },
        {
         "size": 7200,
         "price": 0.54
        }
       ],
       "bids": [
        {
         "size": 12400,
         "price": 0.51
        },
        {
         "size": 8300,
         "price": 0.5
        }
       ],
       "tokenId": "poly_no_token",
       "timestampMs": 1760000000000
      },
      "poly_yes_token": {
       "asks": [
        {
         "size": 9100,
         "price": 0.49
        },
        {
         "size": 7200,
         "price": 0.5
        }
       ],
       "bids": [
        {
         "size": 12400,
         "price": 0.47
        },
        {
         "size": 8300,
         "price": 0.46
        }
       ],
       "tokenId": "poly_yes_token",
       "timestampMs": 1760000000000
      }
     },
     "market": {
      "active": true,
      "closed": false,
      "source": "polymarket",
      "tokens": [
       {
        "price": 0.48,
        "outcome": "Yes",
        "tokenId": "poly_yes_token"
       },
       {
        "price": 0.52,
        "outcome": "No",
        "tokenId": "poly_no_token"
       }
      ],
      "volume": 70112309.42,
      "archived": false,
      "question": "US x Iran permanent peace deal by May 31, 2026?",
      "eventSlug": "us-x-iran-permanent-peace-deal-by",
      "liquidity": 1201662.28,
      "volume24h": 5768589.43,
      "endDateIso": "2026-05-31T00:00:00.000Z",
      "eventTitle": "US x Iran permanent peace deal by...?",
      "marketSlug": "us-x-iran-permanent-peace-deal-by-may-31-2026",
      "conditionId": "1919425",
      "acceptingOrders": true
     },
     "noBook": {
      "asks": [
       {
        "size": 9100,
        "price": 0.53
       },
       {
        "size": 7200,
        "price": 0.54
       }
      ],
      "bids": [
       {
        "size": 12400,
        "price": 0.51
       },
       {
        "size": 8300,
        "price": 0.5
       }
      ],
      "tokenId": "poly_no_token",
      "timestampMs": 1760000000000
     },
     "tokens": [
      {
       "price": 0.48,
       "outcome": "Yes",
       "tokenId": "poly_yes_token"
      },
      {
       "price": 0.52,
       "outcome": "No",
       "tokenId": "poly_no_token"
      }
     ],
     "noToken": {
      "price": 0.52,
      "outcome": "No",
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-seerium-xyz-ea66b5eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.seerium.xyz](https://www.zero.xyz/host/api.seerium.xyz/llms.txt)
