WAF360 API

Get started with WAF360

WAF360 API Documentation

This document provides details on the response fields returned by the WAF360 API.

HTTP Response Data Fields

FieldTypeDescription
qsBooleanIndicates if the traffic passed the quality check. true means passed; false means failed.
ibBooleanIndicates if the traffic is identified as a bot. true means bot; false means not a bot.
icBooleanIndicates if the traffic originates from an Internet Data Center (IDC). true means IDC traffic.
dcStringCode representing the data center or cloud provider. Example: "AMAZON_AWS".
ixBooleanIndicates if the traffic is coming through a proxy. true means proxy traffic.
itBooleanIndicates if the traffic is coming through the Tor network. true means Tor traffic.
ivBooleanIndicates if the traffic is coming through a VPN. true means VPN traffic.
geoStringTwo-letter country code representing the geographic location of the traffic. Example: "GB".
blockBooleanIndicates if the traffic is blocked. true means blocked; false means allowed.

Example HTTP Response

{
  "qs": false,
  "ib": false,
  "ic": true,
  "dc": "AMAZON_AWS",
  "ix": false,
  "it": false,
  "iv": false,
  "geo": "GB",
  "block": false
}