Go to file
Frank Denis 4512fa69a7 Update badge 2021-01-03 09:57:58 +01:00
docker Don't use a very old alpine linux version 2021-01-03 09:55:38 +01:00
src Use clap app_from_crate 2020-08-01 17:37:58 +02:00
.gitignore Update .gitignore 2019-12-04 16:42:00 +01:00
Cargo.toml Use clap app_from_crate 2020-08-01 17:37:58 +02:00
LICENSE y++ 2021-01-03 09:53:47 +01:00
README.md Update badge 2021-01-03 09:57:58 +01:00

README.md

Build Status

iptoasn-webservice

Webservice to map IP addresses to AS information.

This is the source code of the public API from iptoasn.com.

Requires rust.

Usage:

$ curl -H'Accept: application/json' https://api.iptoasn.com/v1/as/ip/<ip address>
{
  "announced": true,
  "as_country_code": "US",
  "as_description": "LEVEL3 - Level 3 Communications, Inc.",
  "as_number": 3356,
  "first_ip": "4.0.0.0",
  "ip": "4.3.2.1",
  "last_ip": "4.23.87.255"
}