A_fast_nsfw_detection_API
Detect NSFW content in images via URL input using a POST request. Integrate this API to automate content moderation and ensure safer digital environments.
Instructions
Make a POST request to bridgeml/nsfw!detection/nsfw_detection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image | Yes | The url for image that wants to be checked for nsfw | https://blog.api.market/wp-content/uploads/2024/07/wonder_woman.png |
Input Schema (JSON Schema)
{
"properties": {
"image": {
"default": "https://blog.api.market/wp-content/uploads/2024/07/wonder_woman.png",
"description": "The url for image that wants to be checked for nsfw",
"type": "string"
}
},
"required": [
"image"
],
"type": "object"
}