Skip to content

Commit 5a24330

Browse files
docs for static IP ranges (#830)
1 parent 23acc36 commit 5a24330

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

fern/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -689,6 +689,8 @@ navigation:
689689
path: security-and-privacy/PCI.mdx
690690
- page: Proxy server guide
691691
path: security-and-privacy/proxy-server.mdx
692+
- page: Static IP addresses
693+
path: security-and-privacy/static-ip-addresses.mdx
692694
- link: SOC-2 Compliance
693695
href: https://security.vapi.ai/
694696
- section: Legal
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Static IP addresses
3+
subtitle: Whitelist Vapi IP addresses
4+
slug: security-and-privacy/static-ip-addresses
5+
---
6+
7+
8+
## Introduction to Vapi static IP addresses
9+
10+
Vapi supports static IP addresses for outbound HTTP requests. When enabled, all HTTP requests from Vapi to your server will originate from a fixed set of IP addresses, allowing you to configure strict firewall rules and network security policies.
11+
12+
## Why use static IP addresses
13+
14+
Static IP addresses provide an additional layer of security for your infrastructure by allowing you to:
15+
16+
- **Control network access** - Restrict incoming traffic to only trusted sources
17+
- **Simplify firewall rules** - Define precise IP based access controls
18+
- **Meet compliance requirements** - Satisfy security policies that mandate IP whitelisting
19+
- **Audit traffic sources** - Verify that requests are genuinely from Vapi's infrastructure
20+
21+
## Vapi's static IP addresses
22+
23+
When static IP addressing is enabled, all webhook requests from Vapi will originate from the following CIDR block:
24+
25+
- `167.150.224.0/23`
26+
27+
## Enabling static IP addresses
28+
29+
You can enable static IP addressing through the server object
30+
31+
### Example
32+
33+
```json
34+
{
35+
"serverUrl": "https://your-server.example.com/webhook",
36+
"staticIpAddressesEnabled": true
37+
}
38+
```
39+
40+
<Warning>
41+
Always test static IP configuration in a staging environment before deploying to production to avoid service disruptions.
42+
</Warning>
43+
44+
## Need help?
45+
46+
If you have questions about static IP addressing, contact our support team at support@vapi.ai.

0 commit comments

Comments
 (0)