cURL
curl --request POST \ --url https://app.pulseguard.nl/api/v2/toolbox/ip-location \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "ip": "8.8.8.8" } '
{ "success": true, "message": "<string>", "data": { "ip": "<string>", "country": "<string>", "city": "<string>", "region": "<string>", "isp": "<string>", "latitude": 123, "longitude": 123 } }
Get geographical information for an IP address (Expert Plan required)
API token generated from your PulseGuard dashboard
IP address to lookup
"8.8.8.8"
IP geolocation completed successfully
true
Success message
Response data as object
Show child attributes