Control API Documentation
Control API Documentation
Introduction
Welcome to the QubeGuard Control API Documentation!
The Control API provides an additional layer of security by acting as middleware that scans incoming API requests for potential threats. It ensures only safe traffic reaches your application. If no threats are detected, the API responds with a 200 OK
status, allowing the request to proceed. In case of a detected threat, it blocks the request with an appropriate error response.
Key Features
Request Interception: Sits between client requests and your application server.
Threat Detection: Scans incoming data for SQL injection, XSS, CSRF, and other common vulnerabilities.
Ease of Integration: Requires minimal changes to your existing codebase.
Scalability: Handles high-traffic SaaS applications effortlessly.
Getting Started
1. Installation & Configuration
Obtain your API Key from the Control API Dashboard.
Set up the API in your preferred programming language.
Securely store your API Key using environment variables.
2. Testing the Control API
You can test the Control API by sending sample requests using:
Postman
curl
Example test request using curl:
Last updated