Catalog/security-tor

Security

Tor exit-node check API

Check whether an IPv4 address is a known Tor exit relay, using the official Tor Project bulk exit list (cached hourly). A useful fraud/abuse/risk signal — Tor traffic is often scrutinized or blocked. Answers 'is this IP a Tor exit', 'is this user on Tor', 'should I flag this IP', 'Tor exit node check'.

Price$0.01per request
MethodPOST
Route/v1/security/tor
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache600s public
securitytorexit-nodeipfraudabuseanonymityriskosint
API URLhttps://x402.hexl.dev/v1/security/tor
Integration docs
Example request
{
  "ip": "185.220.101.1"
}
Example response
{
  "ip": "185.220.101.1",
  "isTorExit": true,
  "listSize": 1800
}
Input schema
{
  "type": "object",
  "required": [
    "ip"
  ],
  "properties": {
    "ip": {
      "type": "string",
      "examples": [
        "185.220.101.1"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}