# Romny Polymarket Panel Snapshot

> Romny Polymarket Panel Snapshot is a paid API for AI agents from api.romny.dpdns.org, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns a multi-asset panel snapshot of Polymarket prediction market data over a short timeframe window (5m or 15m)

## Facts

- Endpoint: GET https://api.romny.dpdns.org/v1/panel/snapshot
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/romny-polymarket-panel-snapshot-0452ae15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5IvKKcu8hLPejXzH-LGNJ

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 romny-polymarket-panel-snapshot-0452ae15
```

Example prompt: Pull the latest 5-minute Polymarket multi-asset panel snapshot so I can see where prediction markets are sitting right now.

## When to prefer this

Choose this endpoint when you need a quick, low-cost snapshot of multiple Polymarket prediction market assets simultaneously, particularly for short-window monitoring (5 or 15 minutes). Prefer it over the complementary 'predictive edges' endpoint when you want raw panel state rather than derived edge signals.

## Known failure modes

- Invalid timeframe value (not '5m' or '15m') returns a validation error
- Payment failure (insufficient USDC balance or x402 protocol error) blocks the request
- API unavailability or network timeout if the upstream Polymarket data feed is down
- Missing required query parameters may result in a default or error response

## How this service works

Polymarket multi-asset panel snapshot

## Output

A structured multi-asset panel snapshot of Polymarket prediction market data, covering multiple markets over the selected timeframe window (5m or 15m), including current prices, positions, or activity metrics for each asset in the panel.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "lookback": {
       "type": "string",
       "description": "Trailing ticks to return (1-60, default 1)"
      },
      "timeframe": {
       "enum": [
        "5m",
        "15m"
       ],
       "type": "string",
       "description": "Panel window: 5m or 15m"
      }
     }
    }
   },
   "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/romny-polymarket-panel-snapshot-0452ae15/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.romny.dpdns.org](https://www.zero.xyz/host/api.romny.dpdns.org/llms.txt)
