# NSFW Image Detection > The standard NSFW image classifier (127M+ runs) — returns 'normal' or 'nsfw' for any image. Essential moderation gate for UGC platforms, at 1 credit per image. - **Provider**: replicate - **Model ID**: falcons-ai/nsfw_image_detection - **Category**: safety_nsfw - **Credits**: 1 per request - **Pricing Type**: fixed ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `image` (string, **required**): Input image ## Example Request ```json { "model": "falcons-ai/nsfw_image_detection", "input": { "image": "https://replicate.delivery/pbxt/JurYNQcIfISvpS6WtaOcwZXw1ifEudlLyQqiLj5N1Zq977Q3/falcon.jpg" } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type json ## Tags nsfw-detection, content-moderation, safety, classification, ugc ## Documentation https://replicate.com/falcons-ai/nsfw_image_detection