BizKitHub
DocsAPI ReferenceVikitron/api/v1/vikitron/tor-ip-list
getVikitronPublic API v1

/api/v1/vikitron/tor-ip-list

Returns a list of all known Tor exit node IP addresses with their geolocation and ASN information.

vikitrongetApiV1VikitronTor-ip-list

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200SuccessTor exit node list.
itemsobject[]Required

List of Tor exit nodes.

Each array item:
ipstringRequired

Tor exit node IP address.

hostnamestringRequired

Reverse DNS hostname.

countrystringRequired

Country code.

ExamplesDEUSNL
citystringRequired

City name.

as_numberstringRequired

Autonomous System number.

as_namestringRequired

AS name.

as_organisationstringRequired

AS organization.

Response example

application/json
{
  "items": [
    {
      "ip": "example_ip",
      "hostname": "example_hostname",
      "country": "DE",
      "city": "example_city",
      "as_number": "example_as_number",
      "as_name": "example_as_name",
      "as_organisation": "example_as_organisation"
    }
  ]
}

Request example

GET /api/v1/vikitron/tor-ip-list

get
curl -X GET "https://api.bizkithub.com/api/v1/vikitron/tor-ip-list" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key