Image Generation
Image Analysis
Model Training
Content Moderation
Authentication
Server Status
Content Moderation
Moderate an image using ai
POST
/
api
/
ai
/
images
/
v2
/
image-moderation
Copy
curl --request POST \
--url https://api.worqhat.com/api/ai/images/v2/image-moderation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form image=/path/to/image.jpg
Copy
{
"summary": "Example response with moderation data",
"value": {
"data": [
{
"Confidence": 85.734561,
"Name": "Explicit Nudity",
"ParentName": "Adult Content",
"TaxonomyLevel": 3
}
],
"processingTime": 888,
"processingId": "4b139bfe-1f71-4345-b539-fa6c1700f166",
"processingCount": 3
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
multipart/form-data
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api.worqhat.com/api/ai/images/v2/image-moderation \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form image=/path/to/image.jpg
Copy
{
"summary": "Example response with moderation data",
"value": {
"data": [
{
"Confidence": 85.734561,
"Name": "Explicit Nudity",
"ParentName": "Adult Content",
"TaxonomyLevel": 3
}
],
"processingTime": 888,
"processingId": "4b139bfe-1f71-4345-b539-fa6c1700f166",
"processingCount": 3
}
}
Assistant
Responses are generated using AI and may contain mistakes.