what's my ip?

your IP address
216.73.217.51
Hostname
User AgentMozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +[email protected])
CountryUnited States
CityColumbus
Time ZoneAmerica/New_York
Country ISOUS
ASNAS16509
ASN OrgAmazon.com, Inc.

CLI USAGE

$ curl -L ajpi.me
216.73.217.51
$ wget -qO- ajpi.me
216.73.217.51
$ http -Fpb ajpi.me
216.73.217.51

PLAIN OUTPUT

$ curl -L ajpi.me/ip
216.73.217.51
$ curl -L ajpi.me/hostname

    
$ curl -L ajpi.me/useragent
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +[email protected])
$ curl -L ajpi.me/country
United States
$ curl -L ajpi.me/city
Columbus
$ curl -L ajpi.me/timezone
America/New_York
$ curl -L ajpi.me/country-iso
US
$ curl -L ajpi.me/asn
AS16509
$ curl -L ajpi.me/asnorg
Amazon.com, Inc.

JSON OUTPUT

$ curl -L ajpi.me/all
{
  "ClientIP": "216.73.217.51",
  "Hostname": "",
  "UserAgent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +[email protected])",
  "Additional": {
    "Country": "United States",
    "City": "Columbus",
    "PostalCode": "43215",
    "TimeZone": "America/New_York",
    "CountryISOCode": "US",
    "Asn": "AS16509",
    "AsnOrg": "Amazon.com, Inc.",
    "Latitude": 39.9587,
    "Longitude": -82.9987,
    "CountryEU": false
  }
}
$ curl -L 'ajpi.me/all?ip=216.73.217.51'
{
  "ClientIP": "216.73.217.51",
  "Hostname": "",
  "UserAgent": "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +[email protected])",
  "Additional": {
    "Country": "United States",
    "City": "Columbus",
    "PostalCode": "43215",
    "TimeZone": "America/New_York",
    "CountryISOCode": "US",
    "Asn": "AS16509",
    "AsnOrg": "Amazon.com, Inc.",
    "Latitude": 39.9587,
    "Longitude": -82.9987,
    "CountryEU": false
  }
}

HTTP STATUS CODES

$ curl -iL ajpi.me/status/404
HTTP/1.1 404 Not Found
Content-Type: application/json; charset=utf-8
Content-Length: 17

{
  "HttpCode": 404
}
Command copied