# Polymarket Market Trades Feed

> Polymarket Market Trades 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-15).

Returns recent on-chain trades for a specific Polymarket prediction market, including wallet address, side, outcome, size, and price for each trade.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-market-trades
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-market-trades-feed-58380e77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KwxsbNSZsHLhKmk8N6cb1

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-market-trades-feed-58380e77 -d '<json body>'
```

Example prompt: Pull the recent on-chain trades for the Polymarket market with conditionId 0xabc123... — I want to see wallet addresses, which side they traded, the outcome, size, and price for each fill.

## When to prefer this

Choose this endpoint when you need per-trade granularity (wallet, side, outcome, size, price) for a specific Polymarket market identified by conditionId. It is ideal for flow tape analysis, smart money tracking, and real-time market microstructure research on Polymarket. Prefer this over aggregated market data endpoints when individual trade-level detail is required.

## Known failure modes

- Invalid or unknown conditionId returns empty results or an error
- Rate limiting or payment failure returns a 402 or 429 response
- Network or upstream Polymarket API unavailability causes timeouts
- Malformed POST body (wrong bodyType or missing required fields) returns a 400 error
- Very new or very old markets may have sparse or no trade data

## How this service works

Recent on-chain trades for a single Polymarket market (by conditionId): wallet, side, outcome, size, price. Per-market flow tape. Free Polymarket Data API.

## Output

A list of recent on-chain trade records for the specified Polymarket market, each containing wallet address, trade side (buy/sell), outcome (e.g. YES/NO), trade size, and execution price.

## 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-market-trades-feed-58380e77/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)
