# Polymarket New Markets Feed

> Polymarket New Markets Feed 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 freshly launched Polymarket prediction markets sorted newest first, including question, outcomes, start date, and volume.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/polymarket-new-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-new-markets-feed-6ca3d187
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zN3wyRSI1ppihBR0NEwye

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-new-markets-feed-6ca3d187 -d '<json body>'
```

Example prompt: Show me the newest prediction markets that just launched on Polymarket — I want to see the question, possible outcomes, start date, and current trading volume for each so I can spot fresh opportunities early.

## When to prefer this

Choose this endpoint when you need to discover freshly launched Polymarket prediction markets sorted by recency. It is ideal for agents monitoring new market creation, traders looking for early-entry opportunities, or any workflow that needs structured Polymarket Gamma data (question, outcomes, start date, volume) without building a direct Polymarket integration. At $0.05 USDC per call via x402, it is cost-effective for occasional polling or event-driven monitoring.

## Known failure modes

- Payment not received or x402 payment protocol failure — endpoint returns 402 Payment Required
- Polymarket Gamma API upstream downtime — may return 5xx or empty data
- Malformed POST body — returns 400 Bad Request
- No new markets available — may return empty list
- Rate limiting or quota exceeded — returns 429 Too Many Requests

## How this service works

Freshly launched Polymarket markets, newest first: question, outcomes, start date, volume. Catch new prediction markets early. Free Polymarket Gamma data.

## Output

A list of recently created Polymarket prediction markets ordered newest first, each containing the market question, possible outcome options, start date, and current trading volume.

## 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-new-markets-feed-6ca3d187/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)
