TOR IP Checker

Check if an IP address belongs to the TOR network

Checking IP address...

Database Statistics

1381
Active TOR IPs
3015
Active Nodes
2305
Total IPs (Historical)
5420
Total Nodes

Last update: 2026-07-08T05:31:38.756592

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
    }
  ]
}