API
https://ip.wesa-it.eu/api/
REST No Auth CORS *

JSON (fancy)

Returns your IP crap as JSON. Has CORS because we're not savages.

GET https://ip.wesa-it.eu/api/?format=json

XML (ancient)

Returns your IP crap as XML. Why tho.

GET https://ip.wesa-it.eu/api/?format=xml

Plain (boring)

Just the IP. Nothing else. You happy?

GET https://ip.wesa-it.eu/api/?format=plain

PTR / rDNS (reverse nerd stuff)

Looks up what the hell the hostname is for any IP.

GET https://ip.wesa-it.eu/api/?action=ptr&ip={ip}

Dual-Stack — Force IPv4 or IPv6 like a boss

Use ip4.wesa-it.eu to force IPv4, ip6.wesa-it.eu for IPv6. Duh.

Just the IPv4, dammit
curl -4 https://ip4.wesa-it.eu/api/?format=plain
Just the IPv6, dammit
curl -6 https://ip6.wesa-it.eu/api/?format=plain
All the IPv4 crap as JSON
curl -4 https://ip4.wesa-it.eu/api/?format=json

Live Response (your actual garbage)

This is what we know about you. Scary, right?

{
    "ip": "216.73.217.177",
    "version": "IPv4",
    "hostname": "216.73.217.177",
    "http_version": "HTTP\/2.0",
    "user_agent": "Mozilla\/5.0 AppleWebKit\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\/1.0; +claudebot@anthropic.com)",
    "os": "Unknown OS",
    "browser": "Unknown Browser",
    "city": "Columbus",
    "country": "USA",
    "country_code": "us",
    "isp": "Amazon.com, Inc. (AS16509)",
    "latitude": "39.9587",
    "longitude": "-82.9987"
}