# Polymarket Trending Markets Feed

> Polymarket Trending Markets Feed is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns the top active Polymarket prediction markets ranked by volume, including questions, outcome prices (implied probabilities), 24h volume, and liquidity.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-trending-markets
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-trending-markets-feed-ceedd603
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V1lEEQKqrcyh3of-yE33B

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-trending-markets-feed-ceedd603 -d '<json body>'
```

Example prompt: What are the top Polymarket prediction markets trending right now? Show me the questions, current outcome prices, 24-hour volume, and liquidity for the most active ones.

## When to prefer this

Use this endpoint when you need a real-time snapshot of the most actively traded Polymarket prediction markets without building your own Polymarket API integration. It is ideal for agents that need trending market context, want to monitor prediction market sentiment, or need to surface current event probabilities without authenticating directly with Polymarket. Choose this over a direct Polymarket API call when using the x402 micropayment flow and needing a pre-aggregated, volume-ranked view.

## Known failure modes

- Polymarket Gamma API upstream outage returns error or empty data
- Payment of 0.1 USDC not processed correctly via x402 protocol causing 402 rejection
- Empty or malformed POST body may cause validation errors
- Stale data if Polymarket data feed has a lag
- Rate limiting if called excessively in short succession

## How this service works

Top active Polymarket markets ranked by volume right now: question, outcome prices (implied probability), 24h volume, liquidity. The trending prediction-market board. Free Polymarket Gamma data.

## Output

A ranked list of top active Polymarket markets by volume, each entry containing the market question, outcome names with their implied probability prices, 24-hour trading volume, and available liquidity depth.

## 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-trending-markets-feed-ceedd603/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)
