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

# Get moderation config

> Retrieve the per-category moderation toggles for the authenticated client, plus a catalogue of all available categories with their display metadata. A category is enabled unless its key is explicitly set to `false` in `enabled_categories`.

Returns the per-category moderation toggles for the authenticated client and a catalogue of every category with its label, description, and icon.

See [moderation categories](/moderation/categories) for what each toggle does.


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/me/moderation-config
openapi: 3.1.0
info:
  title: Omnifence API
  description: >-
    Content moderation API. Clients submit images or videos which pass through a
    classification pipeline and receive a pass/reject decision.
  version: 1.0.0
  contact:
    email: support@omnifence.ai
servers:
  - url: http://localhost:3051
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: System
    description: Health and diagnostics
  - name: Moderation
    description: Submit moderation jobs
  - name: Jobs
    description: Query job status and progress
  - name: Usage
    description: Billing and usage data
  - name: Webhooks
    description: Webhook registration
  - name: Account
    description: Authenticated client account settings
  - name: Billing
    description: Customer-facing billing balance and ledger
  - name: Admin
    description: Platform administration (requires admin:config scope)
paths:
  /api/v1/me/moderation-config:
    get:
      tags:
        - Account
      summary: Get moderation category toggles
      description: >-
        Retrieve the per-category moderation toggles for the authenticated
        client, plus a catalogue of all available categories with their display
        metadata. A category is enabled unless its key is explicitly set to
        `false` in `enabled_categories`.
      operationId: getMyModerationConfig
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                properties:
                  enabled_categories:
                    type: object
                    additionalProperties: false
                    properties:
                      nsfw:
                        type: boolean
                      text:
                        type: boolean
                  catalogue:
                    type: object
                    additionalProperties: false
                    properties:
                      nsfw:
                        type: object
                        additionalProperties: false
                        properties:
                          label:
                            type: string
                          description:
                            type: string
                          icon:
                            type: string
                        required:
                          - label
                          - description
                          - icon
                      text:
                        type: object
                        additionalProperties: false
                        properties:
                          label:
                            type: string
                          description:
                            type: string
                          icon:
                            type: string
                        required:
                          - label
                          - description
                          - icon
                    required:
                      - nsfw
                      - text
                required:
                  - enabled_categories
                  - catalogue
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from the Omnifence dashboard

````