BizKitHub
DocsAPI ReferenceVikitron/api/v1/vikitron/ip-catalog-leaves
getVikitronPublic API v1

/api/v1/vikitron/ip-catalog-leaves

Returns every indexed IPv4 address inside the given /24 (max 256), enriched with hostname, city, country, ISP, ASN and connection flags in a single bulk query. Powers the deepest catalog page on vikitron.com at /{o1}.{o2}.{o3}.

vikitrongetApiV1VikitronIp-catalog-leaves

Parameters

1 query

Query parameters

· 1
prefixstringRequired

Three-octet IPv4 prefix identifying a /24 block.

Example94.113.97

Response schema

1 status code documented

200SuccessCatalog leaf listing.
prefixstringRequired

Echoed canonical /24 prefix.

Example94.113.97
ipsobject[]Required

All indexed IPs in this /24, sorted numerically.

Each array item:
ipstringRequired

Indexed IPv4 address.

Example94.113.97.252
hostnamestring | nullRequired
One of 2:
Variant 1
string

Reverse DNS (PTR) record, when available.

Variant 2
null
citystring | nullRequired
One of 2:
Variant 1
string

City name from the geolocation dataset.

Variant 2
null
countrystring | nullRequired
One of 2:
Variant 1
string

ISO-3166 alpha-2 country code.

Variant 2
null
countryRegionstring | nullRequired
One of 2:
Variant 1
string

Region / state within the country.

Variant 2
null
ispstring | nullRequired
One of 2:
Variant 1
string

ISP name.

Variant 2
null
organisationstring | nullRequired
One of 2:
Variant 1
string

IP block owner organisation.

Variant 2
null
asNumberstring | nullRequired
One of 2:
Variant 1
string

Autonomous System number (with the AS prefix).

Variant 2
null
mobilebooleanRequired

Whether the IP belongs to a mobile carrier.

proxybooleanRequired

Whether the IP is a known proxy/VPN.

hostingbooleanRequired

Whether the IP belongs to a hosting/data-center provider.

torbooleanRequired

Whether the IP is a known Tor exit node.

Response example

application/json
{
  "prefix": "94.113.97",
  "ips": [
    {
      "ip": "94.113.97.252",
      "mobile": false,
      "proxy": false,
      "hosting": false,
      "tor": false
    }
  ]
}

Request example

GET /api/v1/vikitron/ip-catalog-leaves

get
curl -X GET "https://api.bizkithub.com/api/v1/vikitron/ip-catalog-leaves?prefix=94.113.97" \
  -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