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
{ "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 } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
The response is of type object.
object
Was this page helpful?