# Polyform IP RDAP Lookup

> Polyform IP RDAP Lookup is a paid API for AI agents from polyform.polyform-org.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns the registry, network range, organization, and country for a given IP address using RIR RDAP data.

## Facts

- Endpoint: GET https://polyform.polyform-org.workers.dev/v1/ip/:ip
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polyform-ip-rdap-lookup-5eb51cd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PkSvU74xZsqeqRfMgMipr

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 polyform-ip-rdap-lookup-5eb51cd5
```

Example prompt: Who operates the IP address 8.8.8.8 — what organization owns it, which country is it in, and what network range does it belong to?

## When to prefer this

Use this endpoint when you need structured, authoritative IP ownership data (organization, network range, registry, country) sourced directly from RIR RDAP — preferred over informal WHOIS text parsing when you need clean JSON output and don't need geolocation coordinates or abuse contact details.

## Known failure modes

- Invalid or malformed IP address returns an error
- Private/reserved IP ranges may not have RDAP records
- Some RIRs may be temporarily unavailable causing lookup failures
- Very new IP allocations may not yet appear in RDAP
- IPv6 addresses may have varying levels of RDAP detail

## How this service works

Who operates an IP: registry, network range, organization, country. Source: RIR RDAP. JSON.

## Output

A JSON object containing the RIR RDAP record for the IP, including the managing registry, allocated network range (CIDR), the registered organization name, and the country of registration.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/polyform-ip-rdap-lookup-5eb51cd5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polyform.polyform-org.workers.dev](https://www.zero.xyz/host/polyform.polyform-org.workers.dev/llms.txt)
