# Polymarket Recent Trades Feed

> Polymarket Recent 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-14).

Returns the most recent on-chain Polymarket trades across all markets, including proxy wallet, side, outcome asset, size, and price.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-recent-trades
- 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-recent-trades-feed-23016e7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4p1KJ0sdd1wRlzZavJXTt

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-recent-trades-feed-23016e7d -d '<json body>'
```

Example prompt: Pull the most recent on-chain Polymarket trades across all markets and show me the proxy wallet, side, outcome asset, size, and price for each trade.

## When to prefer this

Choose this endpoint when you need a real-time tape of Polymarket on-chain trade flow across all markets simultaneously, rather than polling individual market endpoints. It is well-suited for monitoring large trader activity, detecting sentiment shifts, or building live dashboards of prediction market order flow. Prefer it over manual Polymarket API scraping when you want a clean, paid, low-friction data feed with structured output.

## Known failure modes

- Payment failure or missing x402 payment header returns 402 Payment Required
- Empty response if no trades have occurred recently
- Rate limiting if called too frequently
- Malformed POST body may return 400 Bad Request
- Service unavailability returns 5xx errors

## How this service works

Most recent on-chain Polymarket trades across all markets: proxy wallet, side, outcome asset, size and price. Live tape of prediction-market flow. Free Polymarket Data API.

## Output

A live tape of the most recent on-chain Polymarket trades, each record containing the proxy wallet address, trade direction (buy/sell side), outcome asset traded, size of the trade, and the price paid — covering all active markets.

## 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-recent-trades-feed-23016e7d/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)
