IP Geolocation Enrichment Request
IP and Network IntelligenceHow to call IP Geolocation Enrichment — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/ip/geolocation/full
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| ip_address | string | Optional | IPv4 or IPv6 address to look up, e.g. 8.8.8.8. Optional — if omitted, the IP that called this API is used. |
| lang | string | Optional | Language for location names: en (default), de, ru, ja, fr, cn, es, cs, it, ko, fa, pt. |
Request Body
{
"ip_address": "8.8.8.8"
}
cURL
curl -X POST https://app.way2api.com/api/v1/ip/geolocation/full \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"ip_address":"8.8.8.8"}'
🚀 Send Request