GeoJS
IP geolocation as JSON, JSONP or plain text
IP geolocation returning city, region, country, ASN and coordinates for the caller or any address. Output is available as JSON, JSONP or plain text, handy from browsers and shells alike. Free with no key and generous CORS.
GET https://get.geojs.io/v1/ip/geo.json
{
"ip": "46.1.3.138",
"city": "Istanbul",
"region": "Istanbul",
"country": "Türkiye",
"country_code": "TR",
"asn": 34296,
"timezone": "Europe/Istanbul"
}curl "https://get.geojs.io/v1/ip/geo.json"const res = await fetch("https://get.geojs.io/v1/ip/geo.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://get.geojs.io/v1/ip/geo.json")
print(res.json())/v1/ip/geo.jsonPROBEDIP geolocation as JSON, JSONP or plain text
/v1V1 — documented GET route.
/v1/1V1 details by ID (example: 1).
/v1?limit=10V1 — documented GET route.
/v1/search?q=testSearch by query parameters.
/v1/V1 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
GeoJS: common questions
Is GeoJS free to use?
Yes — GeoJS is a free geo & maps API. Free tier: Free, no API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does GeoJS need an API key?
No — GeoJS needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished (no enforced limit stated)).
Can I call GeoJS from the browser?
Yes — GeoJS returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is GeoJS up right now?
As of our last scheduled check, GeoJS is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.