# IP Private/Bogon Check Bulk

> IP Private/Bogon Check 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).

Checks up to 20 IP addresses in one call to determine if each is a private or bogon address, returning results in input order with per-item error handling.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/ip/private-check
- 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-private-bogon-check-bulk-b52957a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rCMfh2JbBETzRqpwYHMHI

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-private-bogon-check-bulk-b52957a9
```

Example prompt: Check this list of IP addresses and tell me which ones are private or bogon: 10.0.0.1, 192.168.1.5, 8.8.8.8, 172.16.0.1, 203.0.113.5 — process them all in one batch and flag any errors per IP.

## When to prefer this

Use this endpoint when you have a list of 2–20 IP addresses to classify and want to avoid making multiple sequential single-IP calls. It is preferable over the single-IP endpoint whenever you need batch throughput, ordered results, and fault-isolated per-item errors. Ideal for log enrichment pipelines, security audits of IP feeds, or any workflow where a set of IPs must be classified before downstream processing.

## Known failure modes

- Invalid or malformed IP address in the list triggers a per-item error rather than failing the whole batch
- Exceeding 20 IPs per call may result in rejection or truncation
- Network timeouts for concurrent upstream lookups may increase per-item error count
- Empty or missing input list returns an error
- Non-IP string values in the list generate per-item errors

## How this service works

Bulk ip private bogon check: 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/private-check endpoint (IP address classification). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

Returns an ordered array of classification results matching the input IP list, where each item contains the IP address, its private/bogon classification (same answer as the single /ip/private-check endpoint), a per-item error field if the IP could not be evaluated, and an overall count of failures across the batch.

## 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-private-bogon-check-bulk-b52957a9/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)
