Secure your applications with real-time IP-based access control. Manage allowlists for all your sites from one unified dashboard with instant protection and comprehensive analytics.
Traditional IP-based access control requires managing each site individually. Sivvy centralizes everything.
Changes take effect immediately across all protected applications. No waiting for deployments, cache clearing, or server restarts.
Support for individual IPs, CIDR ranges, and advanced filtering. Perfect for teams, offices, VPNs, and cloud infrastructure.
Built for developers, designed for scale. Here's what happens under the hood.
Add a simple PHP snippet or WordPress plugin to your application. The integration checks our API before allowing access to protected areas.
<?php
// Simple integration - add to top of protected PHP files
define('SIVVY_API_KEY', 'your_api_key_here');
function sivvy_simple_protect() {
$response = @file_get_contents('https://app.sivvy.io/cleanips/check-ip.php?key=' . SIVVY_API_KEY);
if ($response) {
$data = json_decode($response, true);
if (isset($data['allowed']) && !$data['allowed']) {
$redirect_url = $data['redirect_url'] ?? 'https://dash.sivvy.io/app/blocked/';
header('Location: ' . $redirect_url);
exit;
}
}
}
sivvy_simple_protect(); // Protect this page
?>
Our API responds in under 200ms globally. Cached responses and smart routing ensure your sites stay fast while staying secure.
Track access attempts, monitor authorized logins, and get insights into who's accessing your applications and when.
Experience the dashboard that makes IP allowlist management effortless. Add your current IP with one click, manage CIDR blocks for your team, and monitor access in real-time.
Automatically detect and add your current IP address
Add entire office networks and VPN ranges
Label and categorize rules for easy management
Set automatic expiration for temporary access
Manage IP addresses that can access your protected applications
Get started in minutes with our pre-built integrations and simple API.
Install our WordPress plugin to protect admin areas, specific pages, or your entire site with just a few clicks.
Add IP-based protection to your Django applications with our middleware. Compatible with Django 3.0+.
# settings.py
MIDDLEWARE = [
'sivvy.middleware.IpCheckMiddleware',
# ... other middleware
]
Use our REST API directly for custom integrations. Perfect for any platform or programming language.
GET https://api.sivvy.io/cleanips/check
Headers: X-API-Key: your-api-key
Params: ip=203.0.113.42
Response: {"allowed": true}
See how teams use Sivvy's IP allowlist management across different scenarios.
Restrict access to admin panels and sensitive areas to office IP ranges. Support for multiple locations and VPNs.
Secure staging environments and development sites. Give team members access while keeping out unauthorized users.
Lock down WordPress admin, Laravel Nova, or any admin interface to specific IP addresses for maximum security.
Restrict API access to known servers and applications. Perfect for B2B integrations and webhook endpoints.
Join hundreds of teams who trust Sivvy to protect their applications with smart IP allowlist management.
Start Free Trial - No Credit Card Required