# Romny Polymarket Rules-Scan Alerts

> Romny Polymarket Rules-Scan Alerts 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 rules-scan alerts derived from Polymarket markets, flagging compliance or rule-violation signals

## Facts

- Endpoint: GET https://api.romny.dpdns.org/v1/rules/alerts
- 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-rules-scan-alerts-f1c667b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r_NoWgaRcEvx77spkVj27

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-rules-scan-alerts-f1c667b3
```

Example prompt: Pull the latest 50 Polymarket rules-scan alerts from Romny so I can see which markets have recently triggered compliance flags.

## When to prefer this

Choose this endpoint when you need a rapid, paginated feed of the most recent Polymarket rules-scan alerts and don't need full market snapshots or settlement outcomes — it is cheaper and faster than broader Polymarket data endpoints on the same host. Prefer it for compliance monitoring, alerting pipelines, or any agent that needs to detect newly flagged markets quickly.

## Known failure modes

- limit parameter out of range (must be 1-100) returns a validation error
- payment of 0.01 USDC not provided or rejected returns a 402 Payment Required
- server unavailable or upstream Polymarket data missing returns a 503 or empty result
- malformed query parameter type returns a 400 Bad Request

## How this service works

Latest Polymarket rules-scan alerts

## Output

A list of up to 100 alert objects (default 20) from the most recent Polymarket rules-scan run, each describing a flagged market, the rule triggered, and contextual metadata such as timestamps and severity signals.

## 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": {
      "limit": {
       "type": "string",
       "description": "Max alerts to return (1-100, default 20)"
      }
     }
    }
   },
   "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-rules-scan-alerts-f1c667b3/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)
