geoip-api

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.

Example response

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

Speed

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.

Usage

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 --license-key

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: --account-id [env: GEOIPAPIACCOUNTID=] --edition-id [env: GEOIPAPIEDITIONID=] [default: GeoIP2-City] --license-key [env: GEOIPAPILICENSEKEY=] -l, --listen-addr [env: GEOIPAPILISTENADDR=] [default: 127.0.0.1:3000] --update-minutes [env: GEOIPAPIUPDATE_MINUTES=] [default: 30] ```

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

License

This project is licensed under the Apache License, Version 2.0