# ip-validate-bulk

> ip-validate-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).

Validates up to 20 IP addresses in a single concurrent batch call, returning per-item validation results in input order with error fields and a failure count.

## Facts

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

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-validate-bulk-25f17d96
```

Example prompt: I have a list of 15 IP addresses I collected from signups — can you validate all of them in one shot and tell me which ones failed or look invalid?

## When to prefer this

Choose this endpoint when you already hold a list of IPs (2–20) that all need validation in one pass — it processes them concurrently and returns results in input order, avoiding the latency and cost of calling the single /ip/validate endpoint in a serial loop. Prefer the single endpoint if you only have one IP to check.

## Known failure modes

- Batch exceeds 20 IP limit — request rejected
- Malformed IP strings in input cause per-item errors rather than full request failure
- Empty input list returns an error
- Network timeout for concurrent lookups on some IPs returns partial results with error fields
- Payment not fulfilled returns 402 response blocking execution

## How this service works

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

## Output

An ordered array of validation results corresponding to the input IPs, each item matching the single /ip/validate response (validity status, IP metadata) plus a per-item error field indicating any failure reason, and a top-level count of how many items failed 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-validate-bulk-25f17d96/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)
