# Polymarket Volume Analytics

> Polymarket Volume Analytics is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Fetches volume analytics for Polymarket prediction markets via the Polymarket Gamma API

## Facts

- Endpoint: POST https://agenttoll.dev/paid/polymarket/volume-analytics
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-volume-analytics-7cd55f74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ocj-5xeAjpjK5F3TOcXDu

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-volume-analytics-7cd55f74 -d '<json body>'
```

Example prompt: Pull the volume analytics for Polymarket prediction markets and show me which markets have the most trading activity right now.

## When to prefer this

Choose this endpoint when you need programmatic access to Polymarket volume and trading activity data without building a direct Polymarket API integration. Ideal for AI agents that need pay-per-call access to prediction market analytics without managing API keys or subscriptions. Prefer this over direct Polymarket API access when operating in an x402 micropayment context.

## Known failure modes

- Polymarket Gamma API unavailable or rate-limited — may return empty markets array
- Invalid or unsupported filter parameters resulting in empty result set
- Payment failure via x402 protocol — call not executed
- Stale or delayed data if Polymarket API has indexing lag

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object sourced from the Polymarket Gamma API containing a list of markets with associated volume and trading activity metrics, including market identifiers, volume figures, and related analytics data.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "limit": {
       "type": "integer",
       "minimum": 5,
       "maximum": 100
      },
      "min_volume": {
       "type": "number",
       "minimum": 0
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source": "Polymarket Gamma API",
  "markets": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-volume-analytics-7cd55f74/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
