# Romny Polymarket Complete-Set Edges

> Romny Polymarket Complete-Set Edges 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-13).

Returns predictive edge signals for Polymarket complete-set markets, optionally filtered by lane (e.g. btc-5m, eth-15m) and ask-sum threshold

## Facts

- Endpoint: GET https://api.romny.dpdns.org/v1/complete-set/edges
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/romny-polymarket-complete-set-edges-3d0a326c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tMg8Rfh6HmVJ9oHx2dFYD

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-complete-set-edges-3d0a326c
```

Example prompt: Pull the current Polymarket complete-set edges for the btc-5m lane and only show me ones where the sum_ask is under 0.99.

## When to prefer this

Choose this endpoint when you need structured, pre-computed edge signals for Polymarket complete-set markets — particularly for crypto-linked lanes like btc-5m or eth-15m. It is more targeted than a broad market snapshot (see the sibling panel-snapshot endpoint) and is best when you want to surface actionable pricing inefficiencies in complete-set contracts, optionally pre-filtered by ask threshold.

## Known failure modes

- Invalid lane id returns empty results or error
- Threshold value outside valid range may return error or unfiltered results
- Payment failure (402) if x402 USDC payment is not properly submitted
- Service unavailable if underlying Polymarket data feed is down
- Malformed query parameters return 400 bad request

## How this service works

Polymarket complete-set predictive edges

## Output

A list of complete-set edge records for Polymarket prediction markets, each containing market identifiers, lane information, and sum_ask values indicating potential predictive inefficiencies. Results can be filtered by lane (e.g. btc-5m, eth-15m) and by a maximum sum_ask threshold.

## 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": {
      "lane": {
       "type": "string",
       "description": "Lane id such as btc-5m or eth-15m"
      },
      "threshold": {
       "type": "string",
       "description": "Optional max sum_ask filter, e.g. 0.99"
      }
     }
    }
   },
   "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-complete-set-edges-3d0a326c/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)
