POST
向 https://stablediffusionapi.com/api/v3/nsfw_image_check 接口发送请求以检查图像是否为 nsfw。curl --location --request POST 'https://stablediffusionapi.com/api/v3/nsfw_image_check' \
--header 'Content-Type: application/json' \
--data-raw '{
"key": "enterprise_api_key",
"init_image": "http://your-image-url.com"
}'
{
"images": "string",
"has_nsfw_concept": [
true
]
}