Skip to main content
GET
/
api
/
v1
/
me
/
moderation-config
Get moderation category toggles
curl --request GET \
  --url http://localhost:3051/api/v1/me/moderation-config \
  --header 'Authorization: Bearer <token>'
{
  "enabled_categories": {
    "ai_adult_general": true,
    "underage": true,
    "nsfw": true,
    "text": true
  },
  "catalogue": {
    "ai_adult_general": {
      "label": "<string>",
      "description": "<string>",
      "icon": "<string>"
    },
    "underage": {
      "label": "<string>",
      "description": "<string>",
      "icon": "<string>"
    },
    "nsfw": {
      "label": "<string>",
      "description": "<string>",
      "icon": "<string>"
    },
    "text": {
      "label": "<string>",
      "description": "<string>",
      "icon": "<string>"
    }
  }
}

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.

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 for what each toggle does.

Authorizations

Authorization
string
header
required

API key from the Stars dashboard

Response

200 - application/json

Default Response

enabled_categories
object
required
catalogue
object
required