# IP Address Info Bulk

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

Enriches up to 20 IP addresses in a single concurrent batch call, returning intelligence data per IP in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/ip/info
- 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/ip-address-info-bulk-9447c390
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q4qacIiVwQtclWNFV3Vaj

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-info-bulk-9447c390
```

Example prompt: I have a list of IP addresses — 203.0.113.5, 198.51.100.22, 192.0.2.1, and 45.33.32.156 — can you look them all up at once and tell me the geolocation, ISP, and any threat signals for each one?

## When to prefer this

Choose this endpoint when you have 2–20 IP addresses to enrich and want to minimize round-trips and cost. It processes all IPs concurrently and preserves input order, making it ideal for log analysis, security triage, or batch enrichment pipelines. Prefer it over calling the single /ip/info endpoint in a loop when latency and efficiency matter. For a single IP, the single endpoint may be simpler; for more than 20 IPs, split into multiple batches.

## Known failure modes

- More than 20 IPs submitted — batch limit exceeded, request rejected
- Invalid or malformed IP address in the list — per-item error field populated for that entry
- Network timeout for one or more IPs — per-item error returned, others succeed
- All IPs fail — full failure count returned with errors for each item
- Payment not included or insufficient — x402 payment required response

## How this service works

Bulk ip address info: up to 20 ips in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /ip/info endpoint (IP address intelligence in one call). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

Returns an ordered array of IP intelligence records matching the input list order. Each item includes the same fields as the single /ip/info endpoint (geolocation, ASN, ISP, and threat/reputation signals), plus a per-item error field if that IP failed to resolve. A top-level failure count is also returned indicating how many items encountered errors.

## 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-info-bulk-9447c390/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)
