TOR IP Checker

Check if an IP address belongs to the TOR network

Checking IP address...

Database Statistics

1373
Active TOR IPs
3247
Active Nodes
2993
Total IPs (Historical)
6684
Total Nodes

Last update: 2026-09-21T11:01:41.473151

API Documentation

GET /api/check?ip={ip_address}
Check if an IP address belongs to TOR network. Returns detailed node information.
GET /api/check/{ip_address}
Alternative path-based endpoint for IP checking.
GET /api/stats
Get database statistics: total nodes, active nodes, unique IPs, last update info.

Example Response

{
  "ip": "185.220.101.1",
  "is_tor": true,
  "is_active": true,
  "last_seen": "2026-01-21T07:45:00",
  "first_seen": "2025-12-01T10:30:00",
  "nodes": [
    {
      "node_id": "ABC123...",
      "published": "2026-01-21T05:00:00",
      "last_status": "2026-01-21T07:00:00",
      "exit_address_date": "2026-01-21T07:45:00",
      "is_active": true
    }
  ]
}