> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modelslab.com/llms.txt
> Use this file to discover all available pages before exploring further.

# NSFW Image Check

> This endpoint is used to check if an image is NSFW.

## Request

Send a `POST` request to below endpoint to check if an image is nsfw or not.

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v1/enterprise/nsfw_image_check' \
```

## Body

```json json theme={null}
{  
    "key": "enterprise_api_key",  
    "init_image": "http://your-image-url.com"
}
```

## Attributes

<ParamField path="key" type="string" required>
  Your enterprise API Key used for request authorization.
</ParamField>

<ParamField path="init_image" type="string" required>
  The image you want to check. Must be a valid image URL or base64-encoded string.
</ParamField>
