Getting Started
The CIB Firewall API allows you to programmatically manage your security settings, query threat intelligence, and retrieve access logs.
Base URL
https://api.cib-firewall.com/v1
Authentication
Authenticate your requests by including your secret API key in the header.
Authorization: Bearer sk_live_...
Endpoints
Check Request
Validate an incoming request against the firewall engine.
POST /firewall/check
curl -X POST https://api.cib-firewall.com/v1/firewall/check \
-H "Authorization: Bearer sk_live_..." \
-d '{
"ip": "203.0.113.1",
"user_agent": "Mozilla/5.0...",
"uri": "/login"
}'