IP Check Request
IP and Network IntelligenceHow to call IP Check — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/ip/check
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| ip_address | string | Optional | A valid public IPv4 or IPv6 address. If omitted, returns info for the caller s IP. |
Request Body
{
"ip_address": "195.250.21.125"
}
cURL
curl -X POST https://app.way2api.com/api/v1/ip/check \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"ip_address":"195.250.21.125"}'
🚀 Send Request