> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ankra.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List the compliance frameworks



## OpenAPI

````yaml https://platform.ankra.app/openapi.json get /api/v1/org/security/compliance/frameworks
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /api/v1/org/security/compliance/frameworks:
    get:
      tags:
        - Security
      summary: List the compliance frameworks
      operationId: list_security_compliance_frameworks_v1
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityComplianceFrameworksResponse'
          description: >-
            The curated compliance framework catalogue with the organisation
            enablement switches and a live score per enabled framework.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityPermissionDenied'
          description: Missing the security.read permission
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityDetailError'
          description: Organization-scoped resource not found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Request validation error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityDetailError'
          description: Internal server error
components:
  schemas:
    SecurityComplianceFrameworksResponse:
      properties:
        frameworks:
          items:
            $ref: '#/components/schemas/SecurityComplianceFrameworkSummary'
          type: array
        generated_at:
          format: date-time
          type: string
      required:
        - frameworks
        - generated_at
      type: object
    SecurityPermissionDenied:
      properties:
        detail:
          enum:
            - permission_denied
          type: string
        permission:
          type: string
        scope_type:
          type: string
      required:
        - detail
        - permission
        - scope_type
      type: object
    SecurityDetailError:
      properties:
        detail:
          type: string
      required:
        - detail
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    SecurityComplianceFrameworkSummary:
      properties:
        key:
          type: string
        title:
          type: string
        short_title:
          type: string
        version:
          type: string
        description:
          type: string
        control_count:
          type: integer
        automated_control_count:
          type: integer
        enabled:
          type: boolean
        enabled_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
        score:
          anyOf:
            - type: number
            - type: 'null'
        satisfied_controls:
          anyOf:
            - type: integer
            - type: 'null'
        at_risk_controls:
          anyOf:
            - type: integer
            - type: 'null'
        failing_controls:
          anyOf:
            - type: integer
            - type: 'null'
        manual_controls:
          anyOf:
            - type: integer
            - type: 'null'
      required:
        - key
        - title
        - short_title
        - version
        - description
        - control_count
        - automated_control_count
        - enabled
        - enabled_at
        - score
        - satisfied_controls
        - at_risk_controls
        - failing_controls
        - manual_controls
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````