Compliance Frameworks

GovernLayer includes 14 compliance frameworks out of the box, each with mapped controls, evidence requirements, and automated readiness scoring. New frameworks are added quarterly.

Supported frameworks

CodeNameControlsCategory
SOC2SOC 2 Type II24Security
GDPRGeneral Data Protection Regulation18Privacy
EU_AI_ACTEU AI Act22AI Governance
ISO27001ISO/IEC 27001:202228Security
HIPAAHIPAA20Healthcare
NIST_AI_RMFNIST AI Risk Management Framework16AI Governance
NIST_CSFNIST Cybersecurity Framework23Security
ISO42001ISO/IEC 42001:202319AI Governance
PCI_DSSPCI DSS v4.025Financial
CCPACalifornia Consumer Privacy Act12Privacy
NIS2NIS2 Directive15Security
DORADigital Operational Resilience Act17Financial
DSADigital Services Act14Platform
DMADigital Markets Act11Platform

GET/v1/frameworks

List frameworks

Retrieve all supported compliance frameworks with their metadata.

Request

GET
/v1/frameworks
curl https://api.governlayer.ai/v1/frameworks \
  -H "X-API-Key: gl_your_api_key_here"

Example response

{
  "data": [
    {
      "code": "SOC2",
      "name": "SOC 2 Type II",
      "controls_count": 24,
      "category": "security"
    },
    {
      "code": "GDPR",
      "name": "General Data Protection Regulation",
      "controls_count": 18,
      "category": "privacy"
    },
    {
      "code": "EU_AI_ACT",
      "name": "EU AI Act",
      "controls_count": 22,
      "category": "ai_governance"
    }
  ]
}

Was this page helpful?