# NSFW Checker

> Predict whether an image is NSFW or SFW.


## Overview

- **Endpoint**: `https://fal.run/fal-ai/x-ailab/nsfw`
- **Model ID**: `fal-ai/x-ailab/nsfw`
- **Category**: vision
- **Kind**: inference
**Tags**: filter, safety, utility



## Pricing

- **Price**: $0.001 per images

For more details, see [fal.ai pricing](https://fal.ai/pricing).

## API Information

This model can be used via our HTTP API or more conveniently via our client libraries.
See the input and output schema below, as well as the usage examples.


### Input Schema

The API accepts the following input parameters:


- **`image_urls`** (`list<string>`, _required_):
  List of image URLs to check. If more than 10 images are provided, only the first 10 will be checked.
  - Array of string
  - Examples: "https://storage.googleapis.com/falserverless/model_tests/remove_background/elephant.jpg"



**Required Parameters Example**:

```json
{
  "image_urls": "https://storage.googleapis.com/falserverless/model_tests/remove_background/elephant.jpg"
}
```


### Output Schema

The API returns the following output format:

- **`has_nsfw_concepts`** (`list<boolean>`, _required_):
  List of booleans indicating if the image has an NSFW concept
  - Array of boolean
  - Examples: [true]



**Example Response**:

```json
{
  "has_nsfw_concepts": [
    true
  ]
}
```


## Usage Examples

### cURL

```bash
curl --request POST \
  --url https://fal.run/fal-ai/x-ailab/nsfw \
  --header "Authorization: Key $FAL_KEY" \
  --header "Content-Type: application/json" \
  --data '{
     "image_urls": "https://storage.googleapis.com/falserverless/model_tests/remove_background/elephant.jpg"
   }'
```

### Python

Ensure you have the Python client installed:

```bash
pip install fal-client
```

Then use the API client to make requests:

```python
import fal_client

def on_queue_update(update):
    if isinstance(update, fal_client.InProgress):
        for log in update.logs:
           print(log["message"])

result = fal_client.subscribe(
    "fal-ai/x-ailab/nsfw",
    arguments={
        "image_urls": "https://storage.googleapis.com/falserverless/model_tests/remove_background/elephant.jpg"
    },
    with_logs=True,
    on_queue_update=on_queue_update,
)
print(result)
```

### JavaScript

Ensure you have the JavaScript client installed:

```bash
npm install --save @fal-ai/client
```

Then use the API client to make requests:

```javascript
import { fal } from "@fal-ai/client";

const result = await fal.subscribe("fal-ai/x-ailab/nsfw", {
  input: {
    image_urls: "https://storage.googleapis.com/falserverless/model_tests/remove_background/elephant.jpg"
  },
  logs: true,
  onQueueUpdate: (update) => {
    if (update.status === "IN_PROGRESS") {
      update.logs.map((log) => log.message).forEach(console.log);
    }
  },
});
console.log(result.data);
console.log(result.requestId);
```


## Additional Resources

### Documentation

- [Model Playground](https://fal.ai/models/fal-ai/x-ailab/nsfw)
- [API Documentation](https://fal.ai/models/fal-ai/x-ailab/nsfw/api)
- [OpenAPI Schema](https://fal.ai/api/openapi/queue/openapi.json?endpoint_id=fal-ai/x-ailab/nsfw)

### fal.ai Platform

- [Platform Documentation](https://docs.fal.ai)
- [Python Client](https://docs.fal.ai/clients/python)
- [JavaScript Client](https://docs.fal.ai/clients/javascript)
