# StableStudio GPT-Image-1.5 Generate

> StableStudio GPT-Image-1.5 Generate is a paid API for AI agents from stablestudio.io, paid per call via x402, $10/call, status unknown (last checked 2026-09-13).

Generates a single AI image from a text prompt using GPT-Image-1.5, with configurable resolution, aspect ratio, format, and safety tolerance, billed per generation.

## Facts

- Endpoint: POST https://stablestudio.io/api/generate/gpt-image-1.5/generate
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablestudio-gpt-image-1-5-generate-6e476f97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S52pNAEn1nNhYOf4qpPfp

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 stablestudio-gpt-image-1-5-generate-6e476f97 -d '<json body>'
```

Example prompt: Generate an image of a futuristic cityscape at sunset with flying cars and neon lights, in 16:9 widescreen format at 2MP resolution, PNG format, with strict safety settings — use StableStudio's pay-per-generation GPT-Image-1.5 model.

## When to prefer this

Choose this endpoint when you need high-quality AI image generation using OpenAI's GPT-Image-1.5 model with flexible resolution (up to 4MP), multiple aspect ratios, and no subscription commitment — ideal for one-off or low-volume image creation tasks billed at $10 USDC per image.

## Known failure modes

- Invalid or empty prompt returns validation error
- Unsupported resolution or aspect ratio enum value returns 400
- Safety tolerance out of range (outside 1-5) returns validation error
- Payment of $10 USDC not completed or rejected causes request to fail
- Output quality outside 0-100 range causes validation error
- Server-side generation failure may return error status on job polling

## How this service works

Pay-per-generation AI image and video creation. No subscriptions ever.

## Output

Returns a JSON object with a jobId, status ('pending'), and success flag. The generation is asynchronous — the agent must poll or retrieve the result using the jobId to get the final image.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "enum": [
    "1024x1024",
    "1536x1024",
    "1024x1536",
    "auto"
   ],
   "type": "string",
   "description": "Image dimensions (square, landscape, portrait, or auto)"
  },
  "prompt": {
   "type": "string",
   "minLength": 1,
   "description": "A detailed description of the image you want to generate"
  },
  "quality": {
   "enum": [
    "low",
    "medium",
    "high"
   ],
   "type": "string",
   "default": "high",
   "description": "Output quality level (affects cost and detail)"
  },
  "background": {
   "enum": [
    "transparent",
    "opaque",
    "auto"
   ],
   "type": "string",
   "default": "auto",
   "description": "Background transparency for PNG output"
  },
  "moderation": {
   "enum": [
    "low",
    "auto"
   ],
   "type": "string",
   "default": "low",
   "description": "Content moderation strictness"
  },
  "output_format": {
   "enum": [
    "png",
    "jpeg",
    "webp"
   ],
   "type": "string",
   "default": "png",
   "description": "Output image format"
  },
  "output_compression": {
   "type": "number",
   "default": 0,
   "maximum": 100,
   "minimum": 0,
   "description": "Compression level (0-100, higher = smaller file)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "gpt-image-1.5-generate",
  "jobId": "cmpbmzaee000j04jrzx4f43tw",
  "status": "pending",
  "pollUrl": "https://stablestudio.dev/api/jobs/cmpbmzaee000j04jrzx4f43tw",
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablestudio-gpt-image-1-5-generate-6e476f97/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablestudio.io](https://www.zero.xyz/host/stablestudio.io/llms.txt)
