DocsInteractive API Docs/api/v1/vikitron/ip-lookup
get

/api/v1/vikitron/ip-lookup

Returns geolocation, ASN, ISP, and network classification information for the given IP address.

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

Parameters

1 query parameter

ipstringrequired

IPv4 or IPv6 address to look up.

Example Request

JavaScript fetch

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

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

Example Response

200Success
{
  "ip": "example_ip",
  "hostname": "example_hostname",
  "timezone": "Europe/Prague",
  "timezoneLabel": "example_timezoneLabel",
  "timezoneGmt": "GMT+1",
  "asNumber": "AS15169",
  "asName": "example_asName",
  "asOrganisation": "example_asOrganisation",
  "city": "example_city",
  "country": "CZ",
  "countryRegion": "example_countryRegion",
  "zip": "example_zip",
  "latitude": 0,
  "longitude": 0,
  "isp": "example_isp",
  "organisation": "example_organisation",
  "mobile": false,
  "proxy": false,
  "hosting": false,
  "tor": false
}

cURL

Command line example

curl -X GET "https://api.bizkithub.com/api/v1/vikitron/ip-lookup?ip=8.8.8.8" \
  -H "Content-Type: application/json"

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key