IP WHOIS Lookup Request
IP and Network IntelligenceHow to call IP WHOIS Lookup — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/ip/whois
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| ip_address | string | Required | IPv4 or IPv6 address to look up, e.g. 8.8.8.8 or 2001:4860:4860::8888. |
Request Body
{
"ip_address": "8.8.8.8"
}
cURL
curl -X POST https://app.way2api.com/api/v1/ip/whois \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"ip_address":"8.8.8.8"}'
🚀 Send Request