# Romny Polymarket Data – Period Settlement Outcomes

> Romny Polymarket Data – Period Settlement Outcomes 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-14).

Returns the latest multi-asset period settlement outcomes from Polymarket prediction markets, optionally filtered by a 5-minute or 15-minute timeframe window.

## Facts

- Endpoint: GET https://api.romny.dpdns.org/v1/panel/outcomes
- 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/romny-polymarket-data-period-settlement-outcomes-a2e1b05c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J1QkAFCdbTznPr5KCiCev

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-data-period-settlement-outcomes-a2e1b05c
```

Example prompt: Pull the latest Polymarket settlement outcomes for the past 15 minutes so I can see which multi-asset markets resolved and what the outcomes were.

## When to prefer this

Choose this endpoint when you need near-real-time Polymarket settlement outcome data over a short rolling window (5 or 15 minutes). It is ideal for bots or agents that monitor prediction market resolutions, trigger downstream trades or alerts on settlement events, or audit recent contract closures. Prefer this over the panel snapshot endpoint when you specifically need settled/resolved outcomes rather than the full live market state.

## Known failure modes

- Invalid timeframe value (not '5m' or '15m') results in a validation error
- No settlements in the requested window returns an empty result set
- Payment not provided or insufficient USDC triggers HTTP 402 payment required
- Service downtime or upstream Polymarket data unavailability causes 5xx errors
- Rate limiting may apply if called excessively in short succession

## How this service works

Latest Polymarket multi-asset period settlement outcomes

## Output

A structured payload containing the latest Polymarket multi-asset settlement outcomes for the requested time window (5m or 15m), including which markets resolved, their outcomes, and relevant period data.

## 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 outcomes to return (1-60, default 1)"
      },
      "timeframe": {
       "enum": [
        "5m",
        "15m"
       ],
       "type": "string",
       "description": "Outcomes 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-data-period-settlement-outcomes-a2e1b05c/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)
