OyeFilmy Logo
personFreeUpgrade
bolt0cr
U

Image generation API

Youchuan

Youchuan v8.1 & v8.2 — text-to-image, image-to-image, style transfer, blending, and background removal.

Provider: Youchuan10 models

Available models

Model keyDisplay nameCapabilityAtlas Cloud slug
youchuan_v8_2_t2iYouchuan v8.2 T2Itext-to-imageyouchuan/v8.2/text-to-image
youchuan_v8_2_i2iYouchuan v8.2 I2Iimage-to-imageyouchuan/v8.2/image-to-image
youchuan_v8_2_style_transferYouchuan v8.2 Style Transferstyle-transferyouchuan/v8.2/style-transfer
youchuan_v8_2_blendYouchuan v8.2 Blendblendyouchuan/v8.2/blend
youchuan_v8_2_remove_bgYouchuan v8.2 Remove BGremove-backgroundyouchuan/v8.2/remove-background
youchuan_v8_1_t2iYouchuan v8.1 T2Itext-to-imageyouchuan/v8.1/text-to-image
youchuan_v8_1_i2iYouchuan v8.1 I2Iimage-to-imageyouchuan/v8.1/image-to-image
youchuan_v8_1_style_transferYouchuan v8.1 Style Transferstyle-transferyouchuan/v8.1/style-transfer
youchuan_v8_1_blendYouchuan v8.1 Blendblendyouchuan/v8.1/blend
youchuan_v8_1_remove_bgYouchuan v8.1 Remove BGremove-backgroundyouchuan/v8.1/remove-background

Endpoint

POST /api/generate

Request body

ParameterTypeRequiredDescription
modelKeystringOne of the model keys listed above
promptstringText description of the image to generate
inputUrlstringInput image URL (for edit/i2i models)
aspectRatiostring"1:1", "16:9", "9:16", etc.
imageQualitystring"Low", "Medium", "High"
styleRefstring | string[]Style reference image URL(s)
charRefstring | string[]Character reference image URL(s)
brandIdstringBrand DNA ID for brand-consistent generation

Code example

curl -X POST https://api.oyefilmy.com/api/generate \
  -H "Authorization: Bearer of_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "modelKey": "youchuan_v8_2_t2i",
    "prompt": "A vibrant pop art portrait of a cat wearing sunglasses"
  }'

Response

{
  "success": true,
  "predictionId": "pred_abc123...",
  "status": "processing",
  "model": "youchuan/v8.2/text-to-image",
  "creditCost": 5
}

Style transfer requires a styleRef URL. Blend combines two to five images. Remove BG extracts the subject from the background. V8.2 models support HD generation, stylize, chaos and weird controls.

Related