Skip to main content
POST
/
v1
/
moderations
Native OpenAI Format
curl --request POST \
  --url https://utoken-test.uuzu.com/v1/moderations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input": "<string>",
  "model": "<string>"
}
'
{
  "id": "<string>",
  "model": "<string>",
  "results": [
    {
      "flagged": true,
      "categories": {},
      "category_scores": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.utoken.wgame-hk.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Bearer Token authentication Format: Authorization: Bearer sk-xxxxxx

Body

application/json
input
required
model
string
Example:

"text-moderation-latest"

Response

200 - application/json

Success - Content Moderation

id
string
model
string
results
object[]