All services

Service / image

StableStudio

AI-powered image and video generation. Generate images with Nano Banana, Flux, GPT Image, and Grok. Create videos with Sora, Veo, Seedance, and Wan models.

Documentation

Payment protocol

mpp

01
tempo

Method ledger

8 callable methods

OpenAPI source
POST/api/generate/flux/generate
50000 USDC

Flux 2 Pro image generation (~5s).

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)",
    "width": "number (optional)",
    "height": "number (optional)"
  }
}
POST/api/generate/gpt-image/generate
11000 USDC

GPT Image 1 generation (~10s).

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)",
    "size": "string (optional: '1024x1024', '1536x1024')",
    "quality": "string (optional: 'low', 'medium', 'high')"
  }
}
POST/api/generate/grok/generate
40000 USDC

Grok image generation.

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)"
  }
}
POST/api/generate/nano-banana/generate
39000 USDC

Nano Banana image generation (~5s).

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)",
    "width": "number (optional)",
    "height": "number (optional)"
  }
}
POST/api/generate/seedance/generate
40000 USDC

Seedance fast video generation (~40s).

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)",
    "image_url": "string (optional, for image-to-video)"
  }
}
POST/api/generate/sora/generate
400000 USDC

Sora 2 video generation (1-3 min).

POST JSON body with prompt. Returns job ID — poll for results.

{
  "body": {
    "prompt": "string (required)",
    "duration": "number (optional, seconds)"
  }
}
POST/api/generate/veo/generate
1600000 USDC

Veo 3.1 video generation (1-2 min).

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)",
    "duration": "number (optional)"
  }
}
POST/api/generate/wan/generate
340000 USDC

Wan 2.5 video generation (2-5 min).

POST JSON body with prompt.

{
  "body": {
    "prompt": "string (required)"
  }
}