Free APIs For You
Free APIs For You
GeocodingFree

geoPluginAPI Documentation

IP geolocation and currency conversion

specifications

AuthNo
HTTPSYes
CORSYes
Rate LimitUnknown
PricingFree

quick start

Get visitor geolocation by IP

JavaScript
const res = await fetch('https://www.geoplugin.net/json.gp');
const geo = await res.json();
console.log(geo.geoplugin_city, geo.geoplugin_countryName);
Python
import requests
geo = requests.get('https://www.geoplugin.net/json.gp').json()
print(geo['geoplugin_city'], geo['geoplugin_countryName'])

about

About geoPlugin API

The geoPlugin API is a geocoding API that gives developers easy access to geocoding-related data and functionality. It is designed for both quick prototypes and production applications.

Key Features

  • Comprehensive API documentation
  • Secure HTTPS endpoints
  • CORS enabled for browser requests
  • No authentication
  • Reliable uptime and fast response times
  • Reasonable rate limits
  • Active developer community support

Perfect For

  • Geocoding management applications
  • Geocoding analytics tools
  • Geocoding integration platforms
  • Custom geocoding solutions

Getting Started

Register for an account and obtain your OAuth credentials. Once you have your credentials, you can start making authenticated requests.

The API documentation provides comprehensive guides and code examples to help you integrate quickly and efficiently.

faq

geoPlugin API — Frequently Asked Questions

How do I get started with the geoPlugin API?

Register for an OAuth token from the official documentation page.

Is the geoPlugin API really free?

Yes! The geoPlugin API offers a free tier. Rate limits apply but are generous for most use cases. Check the official docs for details.

Can I use this API in a commercial project?

Most free APIs support commercial use, but terms vary. Review the geoPlugin API's terms of service and licensing before using it commercially.

What programming languages can I use?

The geoPlugin API is a REST API — any language that can make HTTP requests works. Popular choices include JavaScript, Python, PHP, Java, and Go.

comments

0/2000