# Hyrule Cloud IP Intelligence Lookup

> Hyrule Cloud IP Intelligence Lookup is a paid API for AI agents from cloud.hyrule.host, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns ASN/ISP identity, reverse DNS, RDAP/WHOIS registry data, and BGP routing context for a given IP address

## Facts

- Endpoint: POST https://cloud.hyrule.host/v1/ip/lookup
- 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/hyrule-cloud-ip-intelligence-lookup-cfc9d69e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h-zgkEZr61QCV_Q9YivJX

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 hyrule-cloud-ip-intelligence-lookup-cfc9d69e -d '<json body>'
```

Example prompt: Look up 203.0.113.42 for me — I need to know who owns it, what ASN and ISP it belongs to, its reverse DNS, and any WHOIS or BGP routing context you can find.

## When to prefer this

Choose this endpoint when you need a comprehensive single-call enrichment of an IP address combining ASN/ISP identity, reverse DNS, RDAP/WHOIS registry records, and BGP routing intelligence together. Prefer it over generic WHOIS tools when you need BGP-layer context or when operating in an IPv6-native or overlay-network environment. Useful for threat intelligence, network diagnostics, abuse investigation, and infrastructure auditing workflows that require all these data points in one response.

## Known failure modes

- Invalid or malformed IP address returns a 4xx error
- Private/reserved IP ranges may return limited or no RDAP/WHOIS data
- BGP context unavailable for unannounced or bogon prefixes
- Payment failure via x402 results in 402 response blocking the lookup
- Rate limiting or infrastructure issues may cause 5xx errors

## How this service works

Full-stack network infrastructure for AI agents on AS215932 (RIPE): IPv6-native VMs with SSH and automatic HTTPS subdomains, domain registration and DNS, a broad network-intelligence suite (BGP/routing, IP/ASN & reputation, DNS, RDAP/WHOIS, web & deep TLS, mail deliverability, port/NAT/CGNAT, VoIP/SIP), and proxied requests over Direct/Tor/I2P/Yggdrasil. Pay per request in USDC on Base via x402; VM checkout may also accept BTC/XMR when advertised. This OpenAPI document intentionally contains only the launch-ready, independently payable agent surface.

## Output

Returns IP ownership details including ASN number and name, ISP/organization, reverse DNS PTR record, RDAP/WHOIS registry data (registrant, network block, registration dates), and BGP routing context such as announced prefixes and upstream peers. Costs $0.003 USDC per call settled via x402.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "title": "IPLookupRequest",
     "required": [
      "address"
     ],
     "properties": {
      "views": {
       "type": "array",
       "items": {
        "enum": [
         "geo",
         "asn",
         "rdns",
         "rdap",
         "whois",
         "reputation",
         "bgp"
        ],
        "type": "string",
        "title": "IPLookupView"
       },
       "title": "Views"
      },
      "address": {
       "type": "string",
       "title": "Address"
      },
      "max_age_seconds": {
       "type": "integer",
       "title": "Max Age Seconds",
       "default": 3600,
       "maximum": 604800,
       "minimum": 0
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "IPLookupResponse",
     "required": [
      "request_id",
      "address",
      "generated_at"
     ],
     "properties": {
      "bgp": {
       "anyOf": [
        {
         "type": "object",
         "additionalProperties": true
        },
        {
         "type": "null"
        }
       ],
       "title": "Bgp",
       "default": null
      },
      "geo": {
       "anyOf": [
        {
         "type": "object",
         "title": "IPGeoResult",
         "properties": {
          "city": {
           "anyOf": [
            {
             "type": "string"
            },
            {
             "type": "null"
            }
           ],
           "title": "City",
           "default": null
          },
          "region": {
           "anyOf": [
            {
             "type": "string"
            },
            {
             "type": "null"
            }
           ],
           "title": "Region",
           "default": null
          },
          "source": {
           "anyOf": [
            {

… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "2a0c:b641:b50::1",
  "network": {
   "asn": 215932,
   "prefix": "2a0c:b641:b50::/44",
   "asn_name": "Hyrule Networks",
   "registry": "RIPE"
  },
  "partial": false,
  "sources": {},
  "request_id": "ip_a1b2c3d4",
  "reverse_dns": [],
  "generated_at": "2026-07-15T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyrule-cloud-ip-intelligence-lookup-cfc9d69e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cloud.hyrule.host](https://www.zero.xyz/host/cloud.hyrule.host/llms.txt)
