Overview
The Secberus Compliance Service API provides AI-powered compliance mapping capabilities to aid in Governance, Risk, and Compliance (GRC) processes. Use this API to automatically map your internal policies, controls, and procedures to industry-standard compliance frameworks.
Base URL
https://compliance.secberus.ai
API Version
Current version: 1.0.1
Quick Start
- Obtain an API key from Secberus
- List available compliance frameworks
- Submit your documents for mapping to framework controls
# List available frameworks
curl -H "authorization: YOUR_API_KEY" \
https://compliance.secberus.ai/v1/frameworks
# Map a document to PCI DSS v4 controls
curl -X POST https://compliance.secberus.ai/v1/map \
-H "authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"frameworks": ["pci_dss_v4"],
"min_similarity": 0.3,
"documents": [
{
"id": "policy-001",
"document": "Organization must enforce password rotation every 90 days."
}
]
}'Documentation
- Authentication - How to authenticate with the API
- API Reference - Complete endpoint documentation
- Examples - Common use cases and curl examples
Support
- Email: compliance.ai at secberus.com
- Terms of Service: https://www.secberus.com/compliance-mapping-ai-api-eula
Updated 1 day ago