# Tor Exit Node IP Checker

> Tor Exit Node IP Checker is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks whether a given IPv4 address is a current Tor exit node, using the Tor Project's published exit list (cached hourly).

## Facts

- Endpoint: GET https://intel.rallylive.ca/ip/is-tor
- Price: $0.01/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-ip-checker-36079716
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oV8fwSa0VHjHaVdE578j4

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-ip-checker-36079716
```

Example prompt: Can you check whether the IP address 185.220.101.45 is currently a Tor exit node?

## When to prefer this

Choose this endpoint when you need a fast, real-time check on whether a specific IPv4 address is a Tor exit node, particularly for fraud screening, abuse triage, or enforcing access policies against anonymized traffic. It is backed directly by the Tor Project's official exit list (hourly cache), making it authoritative for Tor-specific detection — prefer it over generic IP reputation APIs when Tor detection specifically is the requirement.

## Known failure modes

- Invalid or non-IPv4 address format returns an error
- IPv6 addresses are not supported
- Stale data possible within the one-hour cache window
- Payment failure or 402 response if x402 payment is not completed
- Tor exit list temporarily unavailable causing lookup failure

## How this service works

Tor exit node check: whether an IPv4 address is a current Tor exit, from the Tor Project's published exit list (cached one hour). Fraud screening, abuse triage and access policy decisions. $0.01 per IP.

## Output

Returns a boolean indicating whether the IPv4 address is a current Tor exit node, based on the Tor Project's published exit list (refreshed every hour). May also include metadata about the exit node status.

## 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-ip-checker-36079716/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)
