# Studio X NSFW Image Generation

> Studio X NSFW Image Generation is a paid API for AI agents from www.studio-x.cc, paid per call via x402, $0.0033/call, status unknown (last checked 2026-09-13).

Generates uncensored NSFW images from a text prompt using the Flux Schnell model, billed per request in USDC via x402.

## Facts

- Endpoint: GET https://www.studio-x.cc/api/generate/image
- Price: $0.0033/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/studio-x-nsfw-image-generation-1346311f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FM0_7op9FaEBPsXJEHqGD

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability studio-x-nsfw-image-generation-1346311f
```

Example prompt: Generate an uncensored NSFW image of a sultry fantasy scene with candlelight and flowing robes using the Flux Schnell model — the prompt is 'a beautiful woman in flowing silk robes by candlelight, fantasy setting, cinematic lighting'.

## When to prefer this

Choose this endpoint when you need uncensored, explicit, or adult-themed image generation without content policy restrictions and are comfortable paying per-request in USDC via the x402 protocol. It is preferable over censored alternatives like standard DALL-E or Stable Diffusion hosted endpoints when the use case involves adult content that would be blocked elsewhere.

## Known failure modes

- Prompt too short (under 3 characters) returns validation error
- Prompt exceeds 4000 character limit returns validation error
- Invalid or unreachable inputUrl returns URI format error
- Unsupported model identifier returns const mismatch error
- Payment failure via x402 results in 402 response and no generation
- Model unavailable or overloaded may return a timeout or 503
- Missing required prompt field returns 400 bad request

## How this service works

Create any NSFW image or video with uncensored Flux, Wan Spicy and Seedance models. Pay exact USDC per request through x402.

## Output

Returns a JSON object containing a prediction ID, the tier (e.g. 'image'), the model used (e.g. 'black-forest-labs/flux-schnell'), and a predictionUrl path where the completed image can be retrieved once generation finishes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "model": {
   "type": "string",
   "const": "black-forest-labs/flux-schnell",
   "description": "Studio X model identifier"
  },
  "params": {
   "type": "object",
   "description": "Model-specific generation parameters",
   "additionalProperties": {
    "type": [
     "string",
     "number",
     "boolean"
    ]
   }
  },
  "prompt": {
   "type": "string",
   "maxLength": 4000,
   "minLength": 3,
   "description": "Image or video generation prompt"
  },
  "inputUrl": {
   "type": "string",
   "format": "uri",
   "description": "Source image or video URL for transformation models"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "prediction-id",
  "tier": "image",
  "model": "black-forest-labs/flux-schnell",
  "predictionUrl": "/api/predictions/prediction-id"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/studio-x-nsfw-image-generation-1346311f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.studio-x.cc](https://www.zero.xyz/host/www.studio-x.cc/llms.txt)
