> ## 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.

# List default categories

Returns the default policy categories your account can switch off, with each category's `default_*`
ID, display name, current enabled state, and the moderation types it applies to (`text`, `image`,
`video`, `video-frame`, `audio`). The response never includes policy prompts. Child-safety
categories always run and are not listed.

Send the returned IDs as keys in the body of `PUT /api/v1/me/moderation-config` to change their
state. See [per-account category toggles](/platform/moderation-categories) for how the toggles
behave and for a request example.


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/me/default-categories
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: Moderation
    description: Submit moderation jobs
  - name: Jobs
    description: Query job status and progress
  - name: Webhooks
    description: Webhook registration
  - name: Account
    description: Authenticated client account settings
paths:
  /api/v1/me/default-categories:
    get:
      tags:
        - Account
      summary: List default moderation categories
      operationId: listMyDefaultCategories
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - categories
                properties:
                  categories:
                    type: array
                    items:
                      type: object
                      additionalProperties: false
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        enabled:
                          type: boolean
                        workflows:
                          type: array
                          items:
                            type: string
                      required:
                        - id
                        - name
                        - enabled
                        - workflows
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from the Omnifence dashboard

````