IPSpeed.info

Kostenloses IP-Geolokalisierungs-API

Absolut kostenloser API-Service zur Bestimmung des geografischen Standorts von IP-Adressen mit einer Fülle von Daten und einfachem Zugriff. Benutzer können eine unbegrenzte Anzahl von Anfragen ohne Einschränkungen oder Gebühren senden. Bitte beachten Sie, dass der API-Zugangsschlüssel alle drei Tage aktualisiert wird. Der vorherige Schlüssel bleibt jedoch weitere 48 Stunden aktiv, damit Sie genügend Zeit haben, ihn ohne Unterbrechung zu ersetzen.

API-Zugriffs-URL

https://ipapi.ipspeed.info/?key={API_KEY}&ip=18.188.130.151

PHP-(cURL)-Anfragebeispiel

// Initialize CURL:
$ch = curl_init('https://ipapi.ipspeed.info/?key={API_KEY}&ip=18.188.130.151');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Store the data:
$json = curl_exec($ch);
curl_close($ch);

// Decode JSON response:
$ipapi = json_decode($json, true);

// Output
echo $ipapi['ip'] . "<br>";
echo $ipapi['type'] . "<br>";
echo $ipapi['country_name'] . "<br>";
echo $ipapi['country_code'] . "<br>";
echo $ipapi['country_flag'] . "<br>";
echo $ipapi['city'] . "<br>";
echo $ipapi['region_name'] . "<br>";
echo $ipapi['latitude'] . "<br>";
echo $ipapi['longitude'] . "<br>";
echo $ipapi['zipcode'] . "<br>";
echo $ipapi['time_zone'] . "<br>";
echo $ipapi['date'] . "<br>";
echo $ipapi['time'] . "<br>";
echo $ipapi['calling_code'] . "<br>";
echo $ipapi['currency'] . "<br>";
echo $ipapi['currency_code'] . "<br>";
echo $ipapi['language'] . "<br>";
echo $ipapi['language_code'] . "<br>";

API-Antwort basierend auf deiner IP

{
    "ip": "18.188.130.151",
    "type": "IPv4",
    "country_name": "United States of America",
    "country_code": "US",
    "country_flag": "https://ipspeed.info/flags/us.svg",
    "city": "Columbus",
    "region_name": "Ohio",
    "latitude": "39.96138",
    "longitude": "-82.997749",
    "zipcode": "43085",
    "time_zone": "-05:00",
    "date": "March 12, 2025",
    "time": "14:03",
    "calling_code": "+1",
    "currency": "United States Dollar",
    "currency_code": "USD",
    "language": "English",
    "language_code": "EN"
}

API KEY

Die nächste API-Schlüsseländerung wird durchgeführt: 2025-03-14 / 00:00 (UTC)

© IPSpeed.info - 2020-2025
SSL Secure Connection