Fast IP lookup and network information tool

ipkit is a lean service that turns an IP address into structured network detail for browsers, terminals and automation.

What is ipkit?

ipkit is a small HTTP service that reports what it knows about an IP address: CIDR network, ASN, country, region, city, timezone and a few basic traits. It is designed to be predictable, scriptable and easy to call from both browsers and command line tools such as curl, wget and httpie.

IP information

SectionFieldValue
IP & Network
IP
Network216.73.216.0/22
Location
ContinentNorth America
CountryUnited States
Country codeUS
Region / ProvinceOhio
CityColumbus
TimezoneAmerica/New_York
Latitude39.962500
Longitude-83.006100
Accuracy radius (km)20
ASN
ASN number16509
ASN organizationAmazon.com, Inc.
IP traits
Private addressfalse
IPv6false

How to use ipkit

You can call ipkit directly from a shell or from any HTTP client. The root endpoint returns a human friendly view, while dedicated endpoints expose focused values that are easy to parse in scripts and monitoring pipelines.

curl ipkit.ir               # full text summary
curl ipkit.ir/ip            # client IP only
curl ipkit.ir/json          # full JSON payload
curl ipkit.ir/1.1.1.1       # lookup a specific IP

Available endpoints

The following HTTP paths are intended for direct use by developers, DevOps engineers, SREs and automation tools:

  • /ip – returns the resolved client IP address.
  • /json – structured JSON with IP, network, geolocation, timezone and ASN.
  • /country – country name for the caller IP.
  • /network – network CIDR that contains the caller IP.

CLI help

/ip        → show client IP only
/json      → full JSON output
/country   → country name
/asn       → ASN number
/<ip>      → lookup a specific IP

GitHub · X

IP copied to clipboard