# Tor Exit Node Bulk Checker

> Tor Exit Node Bulk Checker 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 request to determine whether each is a known Tor exit node, returning ordered results with per-item error fields.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/ip/is-tor
- 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/tor-exit-node-bulk-checker-e252f05d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aeBSk-mWXbOjZ7JvB4CFD

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 tor-exit-node-bulk-checker-e252f05d
```

Example prompt: Check this list of IP addresses for me and tell me which ones are Tor exit nodes: 198.51.100.1, 203.0.113.5, 192.0.2.42, 198.51.100.77, 203.0.113.200.

## When to prefer this

Use this endpoint when you have a list of 2–20 IP addresses that all need Tor exit node checking simultaneously, rather than making individual calls to the single-IP endpoint. It is ideal for batch fraud screening, log analysis, or any agent workflow that accumulates a set of IPs before acting. For a single IP, the sibling /ip/is-tor endpoint is more appropriate.

## Known failure modes

- Exceeding 20 IPs per request returns a validation error
- Malformed or non-IP strings cause per-item errors in the response rather than a full request failure
- Network timeouts on concurrent lookups may increase the failure count
- Payment not attached or insufficient USDC balance results in 402 response
- Empty input list returns an error or empty result set

## How this service works

Bulk tor exit 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/is-tor endpoint (Tor exit node check). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input IP list, where each item contains the IP address, a boolean indicating whether it is a Tor exit node, a per-item error field (null if successful), and a summary count of how many items failed to process.

## 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/tor-exit-node-bulk-checker-e252f05d/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)
