/api/v1/vikitron/as-lookup
Returns everything the platform knows about an Autonomous System (ASN): registered organisation, aggregated statistics across all IPs the platform has ever indexed under that AS (countries, cities, ISPs, timezones, connection-flag percentages), a detected country/city when ≥ 80 % of the indexed IPs agree, and up to 50 example IPs.
vikitrongetApiV1VikitronAs-lookup
Parameters
1 query
Query · 1
asstringRequiredAutonomous System number, with or without the "AS" prefix.
Request
GET /api/v1/vikitron/as-lookup
curl -X GET "https://api.bizkithub.com/api/v1/vikitron/as-lookup?as=AS16019" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
Autonomous System detail.
{
"asNumber": "AS16019",
"asName": "example_asName",
"organization": "example_organization",
"ipCount": 0,
"detectedCountry": {
"code": "CZ",
"confidencePercent": 0
},
"detectedCity": {
"city": "example_city",
"country": "example_country",
"confidencePercent": 0
},
"countries": [
{
"country": "example_country",
"count": 0,
"percent": 0
}
],
"cities": [
{
"city": "example_city",
"country": "example_country",
"count": 0,
"percent": 0
}
],
"isps": [
{
"isp": "example_isp",
"count": 0
}
],
"organisations": [
{
"organisation": "example_organisation",
"count": 0
}
],
"timezones": [
{
"timezone": "Europe/Prague",
"count": 0
}
],
"connectionFlags": {
"mobilePercent": 0,
"proxyPercent": 0,
"hostingPercent": 0,
"torPercent": 0
},
"examples": [
{
"ip": "example_ip",
"mobile": false,
"proxy": false,
"hosting": false,
"tor": false
}
],
"heNetUrl": "https://bgp.he.net/AS16019"
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.