TOR IP Checker

Check if an IP address belongs to the TOR network

Checking IP address...

Database Statistics

1178
Active TOR IPs
2797
Active Nodes
1644
Total IPs (Historical)
3815
Total Nodes

Last update: 2026-03-23T17:41:35.698474

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