IP Address Lookup
Returns the approximate location, ASN, ISP and timezone behind an IP address. Commonly used to attribute traffic in logs or to spot that a request came from a hosting provider rather than a consumer connection.
One cached lookup against a geolocation dataset. Repeat lookups of the same address inside the cache window cost us nothing extra.
Any HTTP client works. Replace the key with one from your dashboard.
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/ip-lookup \
-H "Authorization: Bearer tb_live_<your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"ip": "8.8.8.8"
}'Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
ip | string | required | - | IPv4 or IPv6 address to look up. |
Output
| Field | Type | Description |
|---|---|---|
ip | string | The address that was looked up. |
country | string | Country name. |
city | string | City, when the dataset can resolve one. |
asn | string | Autonomous system number of the owning network. |
isp | string | Network operator. |
timezone | string | IANA timezone identifier. |
Try it
Sends a real POST /api/v1/tools/ip-lookup from your browser and charges 1 credit to your account.
Sign in to run this endpoint. New accounts start with free credits.