Quick Start
Get started with Secberus AI in just a few minutes.
Prerequisites
Before you begin, make sure you have:
- A Secberus AI account with an active subscription
- An API key (generate one from your account dashboard)
Making Your First API Call
1. Set Up Authentication
All API requests require authentication using your API key in the Authorization header:
Authorization: your_api_key_here
2. Get framework IDs
Send a GET request to get the list of available framework IDs:
curl https://compliance.secberus.ai/v1/frameworks -H "Authorization: your_api_key_here"
3. Map a Document
Send a POST request to map a compliance document:
curl -X POST https://compliance.secberus.ai/v1/map \
-H "Authorization: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"frameworks": ["pci_dss_v4"],
"documents": [
{
"id": "doc1",
"document": "Organization must enforce password rotation. Password rotation must occur every 90 days."
}
]
}'
4. Get Results
The API returns a JSON response with the mapping results:
{
"id": "analysis_abc123",
"status": "completed",
"results": {
"compliance_score": 87,
"findings": [
{
"type": "gap",
"severity": "medium",
"description": "Missing data retention policy"
}
]
}
}
Next Steps
- Learn more about Authentication
- Explore all API Endpoints
- Review Best Practices