DocsInteractive API Docs/api/v1/vikitron/tor-ip-list
get

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

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

Endpoint Info
Base URLapi.bizkithub.com
AuthBearer Token
Methods1
Authentication Required

This endpoint requires a valid API key passed as a query parameter or Bearer token.

Get your API key

Example Request

JavaScript fetch

const response = await fetch("https://api.bizkithub.com/api/v1/vikitron/tor-ip-list", {
  method: "GET",
  headers: {
    "Content-Type": "application/json"
  }
});

const data = await response.json();
console.log(data);
get

Example Response

200Success
{
  "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"
    }
  ]
}

cURL

Command line example

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

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key