https://github.com/lineofflight/country
IP-to-country geolocation API
https://github.com/lineofflight/country
geoip geolocation ip-to-country
Last synced: about 2 months ago
JSON representation
IP-to-country geolocation API
- Host: GitHub
- URL: https://github.com/lineofflight/country
- Owner: lineofflight
- Created: 2015-01-14T12:56:12.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2025-02-26T18:41:24.000Z (3 months ago)
- Last Synced: 2025-03-28T07:07:03.612Z (2 months ago)
- Topics: geoip, geolocation, ip-to-country
- Language: JavaScript
- Homepage: http://country.is/
- Size: 599 KB
- Stars: 212
- Watchers: 5
- Forks: 21
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Country
[][action]
Country is an IP-to-country geolocation API that returns a user’s country based on their IP address.
[We run a free instance][free-instance]—no API key
needed. You can also self-host if preferred.## Usage
The API has a minimal interface.
### GET /
Returns the country of the IP making the request, typically the user’s browser or app.
```json
/* https://api.country.is/ */
{
"ip": "77.249.1.1",
"country": "NL"
}
```### GET /{ip}
Returns the country of any given IP. The API supports both with IPv4 and IPv6.
```json
/* https://api.country.is/77.1.2.3 */
{
"ip": "77.1.2.3",
"country": "DE"
}
```### GET /info
Provides metadata about the API, including when the data sources were last updated.
```json
/* https://api.country.is/info */
{
"dataSources": ["maxmind", "cloudflare"],
"lastUpdated": "2024-08-20T18:34:36.000Z"
}
```The API automatically updates MaxMind data every 24 hours in the background.
## Deployment
If you prefer not to use our hosted service, you can self-host with Docker.
```
docker run -d -p 3000:3000 -e ACCOUNT_ID=YOUR_MAXMIND_ACCOUNT_ID -e LICENSE_KEY=YOUR_MAXMIND_LICENSE_KEY lineofflight/country
```Replace `YOUR_MAXMIND_ACCOUNT_ID` and `YOUR_LICENSE_KEY` with your MaxMind account ID and the license key associated with it.
### Cloudflare Integration
To improve performance, deploy behind [Cloudflare][cloudflare]:
1. Point your domain to Cloudflare's nameservers
2. Enable Cloudflare proxying for your API endpoint (click the cloud icon next to your DNS record until it turns orange)When deployed with Cloudflare, the API will automatically use Cloudflare's geolocation data as the primary source, falling back to MaxMind when needed.
[free-instance]: https://api.country.is
[action]: https://github.com/lineofflight/country/actions
[cloudflare]: https://www.cloudflare.com