v1

latestOpenAPI 3.1.0Commercial License2026-07-132434129.1 KB
Tor Detection API

Check if an IP address is a Tor exit node

Returns whether the given IP address is currently listed as a Tor exit node, plus the total count of known exit nodes.

Response time: < 10 ms (in-memory lookup against live consensus list).

Update frequency: Exit node list refreshed every hour from the Tor Project's official data.

get/api/v1/tor/{ip}

Path parameters

ipstring required

IPv4 or IPv6 address to check against the Tor exit node list

Response

Tor detection result returned successfully

ipstring required

The IP address that was checked

is_torboolean required

Whether the IP is a known Tor exit node

tor_node_countinteger required

Total number of currently known Tor exit nodes in the database

Example response

{
  "ip": "185.220.101.50",
  "is_tor": true,
  "tor_node_count": 1247
}