Get started with WAF360
This document provides details on the response fields returned by the WAF360 API.
| Field | Type | Description |
|---|---|---|
qs | Boolean | Indicates if the traffic passed the quality check. true means passed; false means failed. |
ib | Boolean | Indicates if the traffic is identified as a bot. true means bot; false means not a bot. |
ic | Boolean | Indicates if the traffic originates from an Internet Data Center (IDC). true means IDC traffic. |
dc | String | Code representing the data center or cloud provider. Example: "AMAZON_AWS". |
ix | Boolean | Indicates if the traffic is coming through a proxy. true means proxy traffic. |
it | Boolean | Indicates if the traffic is coming through the Tor network. true means Tor traffic. |
iv | Boolean | Indicates if the traffic is coming through a VPN. true means VPN traffic. |
geo | String | Two-letter country code representing the geographic location of the traffic. Example: "GB". |
block | Boolean | Indicates if the traffic is blocked. true means blocked; false means allowed. |
{
"qs": false,
"ib": false,
"ic": true,
"dc": "AMAZON_AWS",
"ix": false,
"it": false,
"iv": false,
"geo": "GB",
"block": false
}