All API responses from Orshot include an X-Orshot-API: true header. You can use this to identify and whitelist Orshot traffic in your infrastructure.
Every response from the Orshot API includes:
| Header | Value |
|---|---|
X-Orshot-API | true |
If your infrastructure uses an anti-bot or WAF system that blocks requests from Orshot, you can whitelist traffic by checking for the X-Orshot-API header.
Orshot may make outbound requests to your infrastructure in these cases:
Create a WAF custom rule:
X-Orshot-APItrueAdd a string match condition:
X-Orshot-APItrueif ($http_x_orshot_api = "true") {
set $allow_bot 1;
}