eachlabs-fashion-ai

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

EachLabs Fashion AI

EachLabs Fashion AI

Generate AI fashion model imagery, virtual try-on experiences, runway content, and campaign visuals using EachLabs models.
使用EachLabs模型生成AI时尚模特图像、虚拟试穿体验、走秀内容以及营销活动视觉素材。

Authentication

认证

Header: X-API-Key: <your-api-key>
Set the
EACHLABS_API_KEY
environment variable. Get your key at eachlabs.ai.
Header: X-API-Key: <your-api-key>
设置
EACHLABS_API_KEY
环境变量。可在eachlabs.ai获取您的密钥。

Recommended Models

推荐模型

Image Generation & Editing

图像生成与编辑

TaskModelSlug
Fashion model generationGPT Image v1.5
gpt-image-v1-5-text-to-image
Virtual try-on (best)Kolors Virtual Try-On
kling-v1-5-kolors-virtual-try-on
Virtual try-on (alt)IDM VTON
idm-vton
Garment on modelWan v2.6 Image-to-Image
wan-v2-6-image-to-image
Model photoshootProduct Photo to Modelshoot
product-photo-to-modelshoot
Photoshoot stylingNano Banana Pro Photoshoot
nano-banana-pro-photoshoot
Face/look consistencyOmni Zero
omni-zero
Character consistencyIdeogram Character
ideogram-character
PhotomakerPhotomaker
photomaker
Photomaker StylePhotomaker Style
photomaker-style
Avatar generationInstant ID
instant-id
Soul stylingHiggsfield AI Soul
higgsfield-ai-soul
Become imageBecome Image
become-image
任务模型Slug
时尚模特生成GPT Image v1.5
gpt-image-v1-5-text-to-image
虚拟试穿(最优)Kolors Virtual Try-On
kling-v1-5-kolors-virtual-try-on
虚拟试穿(备选)IDM VTON
idm-vton
服装上身效果Wan v2.6 Image-to-Image
wan-v2-6-image-to-image
模特棚拍Product Photo to Modelshoot
product-photo-to-modelshoot
棚拍风格调整Nano Banana Pro Photoshoot
nano-banana-pro-photoshoot
面部/造型一致性Omni Zero
omni-zero
角色一致性Ideogram Character
ideogram-character
照片生成模型Photomaker
photomaker
照片生成风格Photomaker Style
photomaker-style
虚拟形象生成Instant ID
instant-id
风格重塑Higgsfield AI Soul
higgsfield-ai-soul
图像风格迁移Become Image
become-image

Training

模型训练

TaskModelSlug
Brand style trainingZ Image Trainer
z-image-trainer
Portrait LoRAFlux LoRA Portrait Trainer
flux-lora-portrait-trainer
任务模型Slug
品牌风格训练Z Image Trainer
z-image-trainer
人像LoRA训练Flux LoRA Portrait Trainer
flux-lora-portrait-trainer

Video

视频生成

TaskModelSlug
Runway videoPixverse v5.6 Image-to-Video
pixverse-v5-6-image-to-video
Catwalk animationBytedance Omnihuman v1.5
bytedance-omnihuman-v1-5
Motion referenceKling v2.6 Pro Motion
kling-v2-6-pro-motion-control
任务模型Slug
走秀视频生成Pixverse v5.6 Image-to-Video
pixverse-v5-6-image-to-video
台步动画Bytedance Omnihuman v1.5
bytedance-omnihuman-v1-5
动作参考控制Kling v2.6 Pro Motion
kling-v2-6-pro-motion-control

Prediction Flow

预测流程

  1. Check model
    GET https://api.eachlabs.ai/v1/model?slug=<slug>
    — validates the model exists and returns the
    request_schema
    with exact input parameters. Always do this before creating a prediction to ensure correct inputs.
  2. POST
    https://api.eachlabs.ai/v1/prediction
    with model slug, version
    "0.0.1"
    , and input matching the schema
  3. Poll
    GET https://api.eachlabs.ai/v1/prediction/{id}
    until status is
    "success"
    or
    "failed"
  4. Extract output URL from response
  1. 检查模型
    GET https://api.eachlabs.ai/v1/model?slug=<slug>
    — 验证模型是否存在,并返回包含精确输入参数的
    request_schema
    。创建预测前务必执行此步骤,以确保输入参数正确。
  2. 提交请求
    https://api.eachlabs.ai/v1/prediction
    发送POST请求,携带模型slug、版本
    "0.0.1"
    以及符合schema的输入参数
  3. 轮询结果 调用
    GET https://api.eachlabs.ai/v1/prediction/{id}
    轮询状态,直到状态变为
    "success"
    "failed"
  4. 提取结果 从响应中获取输出URL

Workflows

工作流示例

AI Fashion Model Generation

AI时尚模特生成

bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "gpt-image-v1-5-text-to-image",
    "version": "0.0.1",
    "input": {
      "prompt": "Professional fashion model wearing a tailored navy blazer, editorial photography, studio lighting, full body shot, neutral background",
      "image_size": "1024x1536",
      "quality": "high"
    }
  }'
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "gpt-image-v1-5-text-to-image",
    "version": "0.0.1",
    "input": {
      "prompt": "Professional fashion model wearing a tailored navy blazer, editorial photography, studio lighting, full body shot, neutral background",
      "image_size": "1024x1536",
      "quality": "high"
    }
  }'

Virtual Try-On

虚拟试穿

Combine a garment image with a model image:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "wan-v2-6-image-to-image",
    "version": "0.0.1",
    "input": {
      "prompt": "The person in image 1 wearing the clothing from image 2, professional fashion photography, editorial style",
      "image_urls": ["https://example.com/model.jpg", "https://example.com/garment.jpg"],
      "image_size": "portrait_4_3"
    }
  }'
将服装图像与模特图像结合:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "wan-v2-6-image-to-image",
    "version": "0.0.1",
    "input": {
      "prompt": "The person in image 1 wearing the clothing from image 2, professional fashion photography, editorial style",
      "image_urls": ["https://example.com/model.jpg", "https://example.com/garment.jpg"],
      "image_size": "portrait_4_3"
    }
  }'

Runway / Catwalk Video

走秀/台步视频

bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "pixverse-v5-6-image-to-video",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/fashion-model.jpg",
      "prompt": "Fashion model walking confidently on a runway, camera follows from front, professional fashion show lighting",
      "duration": "5",
      "resolution": "1080p"
    }
  }'
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "pixverse-v5-6-image-to-video",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/fashion-model.jpg",
      "prompt": "Fashion model walking confidently on a runway, camera follows from front, professional fashion show lighting",
      "duration": "5",
      "resolution": "1080p"
    }
  }'

Catwalk with Motion Reference

基于动作参考的台步生成

Use a real runway walk as motion reference:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "kling-v2-6-pro-motion-control",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/fashion-model.jpg",
      "video_url": "https://example.com/runway-walk-reference.mp4",
      "character_orientation": "video"
    }
  }'
使用真实走秀视频作为动作参考:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "kling-v2-6-pro-motion-control",
    "version": "0.0.1",
    "input": {
      "image_url": "https://example.com/fashion-model.jpg",
      "video_url": "https://example.com/runway-walk-reference.mp4",
      "character_orientation": "video"
    }
  }'

Brand Style Training

品牌风格训练

Train a LoRA on your brand's visual style for consistent campaign imagery:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "z-image-trainer",
    "version": "0.0.1",
    "input": {
      "image_data_url": "https://example.com/brand-photos.zip",
      "default_caption": "brand editorial fashion photography style",
      "training_type": "style",
      "steps": 1500
    }
  }'
针对品牌视觉风格训练LoRA模型,以生成一致性的营销活动素材:
bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "z-image-trainer",
    "version": "0.0.1",
    "input": {
      "image_data_url": "https://example.com/brand-photos.zip",
      "default_caption": "brand editorial fashion photography style",
      "training_type": "style",
      "steps": 1500
    }
  }'

Prompt Tips for Fashion

时尚领域提示词技巧

  • Specify pose: "full body shot", "half body", "close-up on garment details"
  • Include lighting: "editorial studio lighting", "natural light", "dramatic side lighting"
  • Mention style: "editorial", "street style", "haute couture", "casual lookbook"
  • For diversity: specify body types, skin tones, and ages in prompts
  • For consistency: use the same style keywords across a campaign series
  • 指定姿势:"全身照"、"半身照"、"服装细节特写"
  • 包含光线描述:"杂志级棚拍光线"、"自然光"、"戏剧性侧光"
  • 提及风格:"杂志大片风"、"街头风"、"高级定制"、"休闲型录风"
  • 多样性需求:在提示词中指定体型、肤色和年龄
  • 一致性需求:在系列营销活动中使用相同的风格关键词

Parameter Reference

参数参考

See the eachlabs-image-generation and eachlabs-video-generation references for complete model parameters.
完整的模型参数请参考eachlabs-image-generationeachlabs-video-generation文档。