Detect adult content.
POST/ai/detectadultcontent
Check if the content is appropriate for all audiences.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
imageUrlstringrequired
The URL of the image to be checked.
Example:
https://example.com/image.jpg
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
isAdultContentbooleanrequired
Boolean value indicating if the content is adult content.
Example:
true
isRacyContentbooleanrequired
Boolean value indicating if the content is racy content.
Example:
true
isGoryContentbooleanrequired
Boolean value indicating if the content is gory content.
Example:
true
adultScorenumberrequired
Score from 0 to 1 indicating how much the content is considered adult content.
Example:
0.9203029870986938
racyScorenumberrequired
Score from 0 to 1 indicating how much the content is considered racy content.
Example:
0.9937777519226074
goreScorenumberrequired
Score from 0 to 1 indicating how much the content is considered gory content.
Example:
0.0024742891546338797
{
"isAdultContent": true,
"isRacyContent": true,
"isGoryContent": true,
"adultScore": 0.9203029870986938,
"racyScore": 0.9937777519226074,
"goreScore": 0.0024742891546338797
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}