📶 View the details of any IP address with some extras.
Find a file
skidoodle ae91bd7ca8
Merge pull request #1 from skidoodle/testing
Switch to MaxMind GeoIP and Project Refactor
2024-09-07 19:22:59 +02:00
.github/workflows cache 2024-09-07 19:14:47 +02:00
.gitignore maxmind 2024-09-07 03:21:10 +02:00
db.go maxmind 2024-09-07 03:21:10 +02:00
docker-compose.dev.yml test updates 2024-09-07 18:59:47 +02:00
docker-compose.yml test updates 2024-09-07 18:59:47 +02:00
Dockerfile test updates 2024-09-07 18:59:47 +02:00
go.mod Initial commit 2024-06-13 11:43:30 +02:00
go.sum Initial commit 2024-06-13 11:43:30 +02:00
iputils.go test updates 2024-09-07 18:59:47 +02:00
license Create license 2024-06-13 12:10:29 +02:00
main.go maxmind 2024-09-07 03:21:10 +02:00
readme.md remove docker volume 2024-06-13 12:42:37 +02:00
server.go test updates 2024-09-07 18:59:47 +02:00

ipinfo

ipinfo is a powerful and efficient IP information service written in Go. It fetches GeoIP data to provide detailed information about an IP address, including geographical location, ASN, and related network details. The service automatically updates its GeoIP databases to ensure accuracy and reliability.

Features

  • IP Geolocation: Provides city, region, country, continent, and coordinates for any IP address.
  • ASN Information: Includes autonomous system number and organization.
  • Hostname Lookup: Retrieves the hostname associated with the IP address.
  • Automatic Database Updates: Keeps GeoIP databases up-to-date weekly.
  • JSONP Support: Allows JSONP responses for cross-domain requests.

Example Endpoints

Get information about an IP address

$ curl https://ip.albert.lol/8.8.8.8
{
  "ip": "8.8.8.8",
  "hostname": "dns.google.",
  "asn": "15169",
  "organization": "Google LLC",
  "city": "Mountain View",
  "region": "California",
  "country": "US",
  "country_full": "United States",
  "continent": "NA",
  "continent_full": "North America",
  "loc": "37.4223,-122.0850"
}

Get specific information (e.g., city) about an IP address

$ curl https://ip.albert.lol/8.8.8.8/city
Mountain View

Use JSONP callback function

$ curl http://ip.albert.lol/8.8.8.8?callback=getGoogle
/**/ typeof getGoogle === 'function' && getGoogle({
  "ip": "8.8.8.8",
  "hostname": "dns.google.",
  "asn": "15169",
  "organization": "Google LLC",
  "city": "Mountain View",
  "region": "California",
  "country": "US",
  "country_full": "United States",
  "continent": "NA",
  "continent_full": "North America",
  "loc": "37.4223,-122.0850"
});
<script>
let getGoogle = function(data) {
  alert("Google's ASN is " + data.asn);
}
</script>
<script src="https://ip.albert.lol/8.8.8.8?callback=getGoogle"></script>

Running Locally

With Docker

git clone https://github.com/skidoodle/ipinfo
cd ipinfo
docker build -t ipinfo:main .
docker run -p 3000:3000 ipinfo:main

Without Docker

git clone https://github.com/skidoodle/ipinfo
cd ipinfo
go run main.go

Deploying

Docker Compose

version: '3.9'

services:
  ipinfo:
    container_name: ipinfo
    image: 'ghcr.io/skidoodle/ipinfo:main'
    restart: unless-stopped
    ports:
      - '3000:3000'

Docker Run

docker run \
  -d \
  --name=ipinfo \
  --restart=unless-stopped \
  -p 3000:3000 \
  ghcr.io/skidoodle/ipinfo:main

LICENSE

GPL-3.0