Get IP info
This will return the IP info of the given IP address.
Select the server you want to use here
GET /api/json/{ip}
Parameters
Parameters | Description | Type | Required | Default |
---|---|---|---|---|
ip | The IP address you want to get the info of | string | No | The requester's IP address |
Response
For a successful request, you will receive a 200 OK
response with the following JSON structure:
{
"ipVersion": 6,
"ipAddress": "2a02:8071:1212:aa0:d914:e794:457d:1212",
"latitude": 51.2217,
"longitude": 6.77616,
"countryName": "Germany",
"countryCode": "DE",
"capital": "Berlin",
"phoneCodes": [49],
"timeZones": ["Europe/Berlin", "Europe/Busingen"],
"zipCode": "40123",
"cityName": "Düsseldorf",
"regionName": "North Rhine-Westphalia",
"continent": "Europe",
"continentCode": "EU",
"currencies": ["EUR"],
"languages": ["de"],
"asn": "3209",
"asnOrganization": "Vodafone GmbH",
"isProxy": false
}