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
Example response
{
"ip": "185.220.101.50",
"is_tor": true,
"tor_node_count": 1247
}