POST
/
v1beta
/
toolbox
/
ip-location
IP geolocation
curl --request POST \
  --url https://app.pulseguard.nl/api/v1beta/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
  }
}

Authorizations

Authorization
string
header
required

API token generated from your PulseGuard dashboard

Body

application/json

Response

200
application/json

IP geolocation completed successfully

The response is of type object.