# Polymarket CLOB Markets Data

> Polymarket CLOB Markets Data is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns paginated Polymarket Central Limit Order Book (CLOB) market metadata including token IDs, tick sizes, minimum order sizes, and tradability flags.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-clob-markets
- 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-clob-markets-data-42816a77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q42iq2VSKMVI_2V1_H97r

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-clob-markets-data-42816a77 -d '<json body>'
```

Example prompt: Can you pull me the latest Polymarket CLOB market listings — I need the token IDs, tick sizes, minimum order sizes, and which markets currently have order books enabled and are accepting orders?

## When to prefer this

Use this endpoint when you need structured Polymarket CLOB market metadata — particularly token IDs, tradability flags, and order sizing parameters — without maintaining a direct Polymarket API integration. Ideal for trading bots, market scanners, or analytics pipelines that need paginated access to CLOB market data at low cost ($0.05/call). Prefer this over direct Polymarket API access when operating in an x402 micropayment-native agent environment.

## Known failure modes

- Payment not received or insufficient USDC — 402 response
- Invalid POST body or malformed bodyType — 400 bad request
- Polymarket CLOB upstream unavailable — 502 or 503 proxy error
- Rate limiting exceeded — 429 too many requests
- Empty result set if no markets match applied filters

## How this service works

Paginated Polymarket CLOB markets: token ids, tick size, min order size, accepting-orders + order-book-enabled flags. The tradability layer behind each market. Free Polymarket CLOB data.

## Output

A paginated list of Polymarket CLOB market objects, each containing: token IDs for the yes/no outcome tokens, tick size (price granularity), minimum order size, a boolean flag for whether the market is accepting orders, and a boolean flag for whether the order book is enabled.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-clob-markets-data-42816a77/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
