IP Geolocation API

Location

IP intelligence: geolocation, ISP, ASN, timezone, currency, VPN/proxy detection. Free tier with 100 requests per day — no credit card required.

5
Endpoints
100
Free Req/Day
0
Cost to Start
<200ms
Avg Latency
Get Free API Key Interactive Docs

Code Examples

cURL

curl -s "https://api.commandsector.in/api/ip-geo/lookup/8.8.8.8?api_key=demo-try-free-2026"

Python

import requests
resp = requests.get("https://api.commandsector.in/api/ip-geo/lookup/8.8.8.8",
    params={"api_key": "YOUR_KEY"})
print(resp.json())  # {"country": "US", "city": "Mountain View", ...}

JavaScript

const resp = await fetch(
  "https://api.commandsector.in/api/ip-geo/lookup/8.8.8.8?api_key=YOUR_KEY"
);
const geo = await resp.json();
console.log(`${geo.city}, ${geo.country}`);

Use Cases

Content localizationfraud detectioncomplianceanalytics dashboardsad targeting

Getting Started

  1. Get your free API key at /signup (instant, no credit card)
  2. Pass it as X-API-Key header or ?api_key=YOUR_KEY query parameter
  3. Make requests to /api/ip-geo/ endpoints
  4. Check interactive Swagger docs for all 5 endpoints

Pricing

Free100 req/day$0/mo
Pro10,000 req/day$9.99/mo
EnterpriseUnlimited$49.99/mo

Frequently Asked Questions

What data is returned for an IP lookup?
Country, city, region, latitude, longitude, ISP, ASN, timezone, currency, and VPN/proxy detection.
Does it detect VPNs and proxies?
Yes. The API flags known VPN, proxy, and Tor exit node IP addresses.
Is it free?
Yes, 100 lookups per day on the free tier with no credit card required.

OpenAPI Specification

Machine-readable spec: /api/ip-geo/openapi.json

Also available on: API Catalog · MCP Server · All Specs

Get Free API Key →