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

# Get current regulatory catalog

> Return the active regulatory reference catalog snapshot.



## OpenAPI

````yaml https://api.qa.nlbs.ai/api/openapi.json get /regulatory/current
openapi: 3.1.0
info:
  description: >-
    NL Labs AI AML API. Use Bearer API keys for protected endpoints. The /live
    and /ready probes are public.
  title: NL Labs AI
  version: 0.1.0
servers:
  - url: https://api.qa.nlbs.ai/api
security:
  - ApiKeyAuth: []
tags:
  - description: Runtime health checks and source freshness endpoints.
    name: health
  - description: Canonical entity lookup endpoints used before starting analyses.
    name: entities
  - description: AML analysis creation, status, result, and debug endpoints.
    name: analyses
  - description: Regulatory report (Motor 2) creation, status, result, and debug endpoints.
    name: reports
  - description: Versioned deterministic rules catalog endpoints.
    name: rules
  - description: Versioned regulatory reference catalog endpoints.
    name: regulatory
  - description: Webhook endpoint configuration and delivery-event operations.
    name: webhooks
paths:
  /regulatory/current:
    get:
      tags:
        - regulatory
      summary: Get current regulatory catalog
      description: Return the active regulatory reference catalog snapshot.
      operationId: get_current_regulatory
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegulatoryVersionSnapshotResponse'
          description: Successful Response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Missing, malformed, expired, or invalid Bearer API key.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: The authenticated API key does not have the required scope.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: The active regulatory catalog snapshot was not found.
      security:
        - HTTPBearer: []
components:
  schemas:
    RegulatoryVersionSnapshotResponse:
      properties:
        catalog:
          additionalProperties: true
          description: Frozen regulatory catalog payload.
          title: Catalog
          type: object
        manifest:
          $ref: '#/components/schemas/RegulatoryManifestResponse'
          description: Snapshot manifest metadata.
      required:
        - manifest
        - catalog
      title: RegulatoryVersionSnapshotResponse
      type: object
    ErrorResponse:
      properties:
        detail:
          description: Stable public error message.
          examples:
            - Resource not found.
          title: Detail
          type: string
      required:
        - detail
      title: ErrorResponse
      type: object
    RegulatoryManifestResponse:
      examples:
        - catalog_hash: sha256:example
          document_count: 12
          published_at: '2026-06-23T00:00:00Z'
          reference_count: 80
          version: 0.1.0
      properties:
        catalog_hash:
          description: Deterministic hash of the regulatory catalog payload.
          examples:
            - sha256:example
          title: Catalog Hash
          type: string
        document_count:
          description: Number of source documents.
          examples:
            - 12
          title: Document Count
          type: integer
        published_at:
          description: Publication timestamp for this regulatory snapshot.
          examples:
            - '2026-06-23T00:00:00Z'
          format: date-time
          title: Published At
          type: string
        reference_count:
          description: Number of regulatory references.
          examples:
            - 80
          title: Reference Count
          type: integer
        version:
          description: Regulatory catalog semantic version.
          examples:
            - 0.1.0
          title: Version
          type: string
      required:
        - version
        - published_at
        - catalog_hash
        - document_count
        - reference_count
      title: RegulatoryManifestResponse
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````