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

  1. Obtain an API key from Secberus
  2. List available compliance frameworks
  3. 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

Support