IP Check Advance Request
IP and Network IntelligenceHow to call IP Check Advance — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/ip/check_advance
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. 122.180.145.105 or 2001:db8::1). Optional — if omitted, the IP that called this API is auto-detected and used. |
Request Body
{
"ip_address": "122.180.149.100"
}
cURL
curl -X POST https://app.way2api.com/api/v1/ip/check_advance \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"ip_address":"122.180.149.100"}'
🚀 Send Request