# IP Intel Batch

> IP Intel Batch is a paid API for AI agents from ip.halowerk.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Inspects up to 200 IP addresses in a single call, returning network ownership, geolocation, and abuse signals for each.

## Facts

- Endpoint: POST https://ip.halowerk.com/ip/batch
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ip-intel-batch-0e99350d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_73jI7_UomUpS8qGjgpvzy

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-intel-batch-0e99350d -d '<json body>'
```

Example prompt: Can you check these 50 IP addresses for me and tell me their network owners, locations, and whether any of them show abuse signals? Here's the list: 192.168.1.1, 10.0.0.1, 8.8.8.8 … (and 47 more).

## When to prefer this

Use this endpoint when you need to inspect multiple IP addresses (up to 200) in a single operation, making it far more efficient and cost-effective than calling the single-IP endpoint repeatedly. Ideal for bulk fraud screening, threat investigation, log analysis, and security workflows where you have a batch of IPs to enrich at once.

## Known failure modes

- Invalid IP format causes rejection of the malformed address or the entire batch
- Submitting more than 200 IPs returns a validation error
- Empty IP list returns an error
- Insufficient USDC balance causes payment failure via x402
- Duplicate IPs may still be charged per address submitted
- Private/reserved IP ranges may return limited or no intelligence data

## How this service works

Inspect up to 200 IP addresses at 0.0005 USDC per address.

## Output

For each submitted IP address, the endpoint returns intelligence data including network ownership (ASN, organization), geographic location, and abuse/threat signals. Results are returned as a batch response covering all submitted addresses in a single call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ips": {
   "type": "array",
   "items": {
    "type": "string",
    "description": "IPv4 or IPv6 address."
   },
   "maxItems": 200,
   "minItems": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ip-intel-batch-0e99350d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ip.halowerk.com](https://www.zero.xyz/host/ip.halowerk.com/llms.txt)
