Documentation Index
Fetch the complete documentation index at: https://docs.getimmutable.dev/llms.txt
Use this file to discover all available pages before exploring further.
Overview
IP allowlisting lets you restrict API access to a set of trusted IP addresses or CIDR ranges. When enabled, requests from unlisted IPs are rejected with403 Forbidden.
How It Works
- Add IP addresses or CIDR ranges to your workspace allowlist from Settings > Security in the dashboard.
- Once the allowlist is non-empty, only requests from listed IPs are permitted.
- Requests from unlisted IPs receive a
403response.
CIDR Notation
IP allowlisting supports both individual addresses and CIDR ranges:| Entry | Matches |
|---|---|
203.0.113.42 | Single IP address |
203.0.113.0/24 | 256 addresses (203.0.113.0 through 203.0.113.255) |
10.0.0.0/8 | All 10.x.x.x addresses |
2001:db8::/32 | IPv6 range |
Scope
The allowlist applies to all API keys in the workspace. There is no per-key allowlisting — if you need different access restrictions, use separate workspaces.Leave the allowlist empty to permit requests from any IP address. IP allowlisting is optional.
Plan Quotas
| Plan | IP Allowlist Entries |
|---|---|
| Free | 2 |
| Starter | 10 |
| Pro | 50 |
| Enterprise | Unlimited |