Videoslash API
Creative studioGeneratedModels

GPT Image 1.5

Creative Studio image model reference for the public API.

GPT Image 1.5

Public model ID: gpt-image-15

Asset type: image

Category: Generation

Starting credits: 0.05 (defaults: 0.7)

Prompt required.

Start a generation

curl -s -X POST "$API_BASE_URL/v1/creative-studio/generations" \
  -H "Authorization: Bearer vsl_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "modelId": "gpt-image-15",
    "prompt": "Your prompt here",
    "input_images": ["https://example.com/reference.jpg"],
    "aspect_ratio": "1:1"
  }' | jq

Poll GET /v1/creative-studio/generations/{id} until status is completed. Completed generations return outputUrl on cdn.videoslash.com.

Media parameters

NameTypeConstraintsDefaultDescription
input_imagesarrayoptional · max items: 10—A list of images to use as input for the generation

Settings parameters

NameTypeConstraintsDefaultDescription
aspect_ratioenumoptional · enum: 1:1, 3:2, 2:31:1The aspect ratio of the generated image
input_fidelityenumoptional · enum: low, highlowControl how much effort the model will exert to match the style and features, especially facial features, of input images
number_of_imagesintegeroptional · min: 1 · max: 101Number of images to generate (1-10)
qualityenumoptional · enum: low, medium, high, autoautoThe quality of the generated image
backgroundenumoptional · enum: auto, transparent, opaqueautoSet whether the background is transparent or opaque or choose automatically
output_compressionintegeroptional · min: 0 · max: 10090Compression level (0-100%)
output_formatenumoptional · enum: png, jpeg, webpwebpOutput format
moderationenumoptional · enum: auto, lowautoContent moderation level

On this page