If you do not require an auto-updating database or prometheus metrics, you should check out ffissore/geoip-rs, the inspiration for this project.
geoip-api is a geoip service: it provides geographical information about the specified IP address. It supports both IPV4 and IPV6.
When called with the ip
query param, it resolves the specified IP address. For example: https://localhost:3000/?ip=216.58.205.132
If the provided IP address is invalid, it returns an error
By default, responses will be in english. An optional lang
query param can be provided: if a translation is available, returned data will be in that language. Current list includes: de
, en
, es
, fr
, ja
, pt-BR
, ru
, zh-CH
. For example: https://localhost:3000/?ip=216.58.205.132&lang=ja
Instead of reading from a file, geoip-api will regularly check for updates to the maxminddb online. See the usage below, on how to configure this.
Valid ip address:
json
{
"ip_address": "46.51.179.90",
"latitude": 53.3331,
"longitude": -6.2489,
"postal_code": "D02",
"continent_code": "EU",
"continent_name": "Europe",
"country_code": "IE",
"country_name": "Ireland",
"region_code": "L",
"region_name": "Leinster",
"province_code": "",
"province_name": "",
"city_name": "Dublin",
"timezone": "Europe/Dublin"
}
Not found (private) ip address (will return an 400 error code):
AddressNotFoundError: Address not found in database
I was able to achieve 150k requests per second on my machine.
geoip-api does choose to hold the entire database in memory, rather than writing it to a file. Since it must download the new database while still serving requests from the old one, please allow at least 512 MB of memory for this.
Install geoip-api with
bash
cargo install geoip-api
If you don't have cargo
, install it with
bash
curl https://sh.rustup.rs -sSf | sh
or read the tutorial for additional instructions.
You can specify options via the command-line or environment variables,
```bash
USAGE:
geoip-api [OPTIONS] --account-id
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
--account-id
e.g.
bash
geoip-api =-account-id 123456 --license-key s3cretlicense --update-minutes 30
# or
export GEOIP_API_ACCOUNT_ID=123456
export GEOIP_API_LICENSE_KEY=s3cretlicense
geoip-api
This project is licensed under the Apache License, Version 2.0