# Bulk IP Enrichment

> Bulk IP Enrichment 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).

Enriches up to 20 IPv4 addresses in a single call with public/private classification, ASN, owner, country, reverse DNS, and cloud provider detection.

## Facts

- Endpoint: GET https://intel.rallylive.ca/ip/bulk
- 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/bulk-ip-enrichment-7e76fc1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tsRRix38nMn7wbq06DFwm

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 bulk-ip-enrichment-7e76fc1d
```

Example prompt: I have these 15 IPs from our firewall export — can you enrich them all at once and tell me which country, ASN, cloud provider, and whether each is public or private?

## When to prefer this

Choose this endpoint when you need to enrich multiple IPv4 addresses simultaneously at a fraction of per-IP cost — ideal for log analysis, firewall export review, or SIEM enrichment pipelines where batching up to 20 IPs per call significantly reduces cost and latency compared to individual lookups.

## Known failure modes

- More than 20 IPs submitted — returns an error or truncates the list
- Invalid IPv4 address format causes rejection of that entry or the whole batch
- Private/reserved IP ranges may return limited metadata
- Network timeouts on reverse DNS resolution may leave some rDNS fields empty
- Missing or unknown ASN for newly allocated or unregistered IP blocks

## How this service works

Bulk IP enrichment: up to 20 IPv4 addresses in one $0.01 call, each with public/private classification, ASN and owner, country, reverse DNS and cloud provider. Enrich a log or firewall export at a twentieth of the per-IP price.

## Output

Returns per-IP metadata for each submitted address including: public vs. private classification, ASN number and owner name, country of origin, reverse DNS hostname, and cloud provider identification (e.g. AWS, GCP, Azure) where 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/bulk-ip-enrichment-7e76fc1d/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)
