# IP Address Intelligence Lookup

> IP Address Intelligence Lookup is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns comprehensive IP address intelligence including reverse DNS, ASN, announced prefix, country, RDAP org, bogon/private classification, and cloud provider detection in a single call.

## Facts

- Endpoint: GET https://intel.rallylive.ca/ip/info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ip-address-intelligence-lookup-4840cf98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ls3bsAZNS1Axjvr8q26os

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 ip-address-intelligence-lookup-4840cf98
```

Example prompt: Look up everything you can about IP address 8.8.8.8 — I need its reverse DNS hostname, ASN, owner org, announced prefix, country, whether it's a bogon or private address, and which cloud provider it belongs to if any.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call IP enrichment that combines ASN, reverse DNS, RDAP, bogon classification, and cloud provider detection together. It is ideal for log enrichment pipelines, abuse triage workflows, and infrastructure mapping where you need multiple data dimensions about an IP without chaining multiple API calls. Prefer it over separate DNS or WHOIS lookups when you want all metadata in one request at a low per-call cost.

## Known failure modes

- IP address not provided or malformed — returns a 400 or error object
- IP is unrouted or not in any BGP table — ASN and prefix fields may be null
- Reverse DNS not configured — hostname field returns null or empty
- Payment not included or insufficient — returns 402 Payment Required
- Rate limiting or quota exceeded — returns 429 or 402

## How this service works

IP address intelligence in one call: reverse DNS hostname, ASN number and owner name, announced prefix, country and regional registry from Team Cymru, RDAP network name and organization, private/bogon classification and cloud provider detection (AWS, Google, Azure, Cloudflare...). Log enrichment, abuse triage and infrastructure mapping. $0.01 per IP.

## Output

A JSON object containing the IP's reverse DNS hostname, ASN number and owner name, announced BGP prefix, country code, regional internet registry (RIR), RDAP network name and organization, a boolean or label for private/bogon classification, and detected cloud provider name (e.g. AWS, Google Cloud, Azure, Cloudflare) if applicable.

## 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"
    },
    "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/ip-address-intelligence-lookup-4840cf98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
