Loading...
Loading...
Generate fashion model imagery, virtual try-on, runway videos, and campaign visuals using EachLabs AI. Use when the user needs fashion content, model photography, or virtual try-on.
npx skill4agent add eachlabs/skills eachlabs-fashion-aiHeader: X-API-Key: <your-api-key>EACHLABS_API_KEY| Task | Model | Slug |
|---|---|---|
| Fashion model generation | GPT Image v1.5 | |
| Virtual try-on (best) | Kolors Virtual Try-On | |
| Virtual try-on (alt) | IDM VTON | |
| Garment on model | Wan v2.6 Image-to-Image | |
| Model photoshoot | Product Photo to Modelshoot | |
| Photoshoot styling | Nano Banana Pro Photoshoot | |
| Face/look consistency | Omni Zero | |
| Character consistency | Ideogram Character | |
| Photomaker | Photomaker | |
| Photomaker Style | Photomaker Style | |
| Avatar generation | Instant ID | |
| Soul styling | Higgsfield AI Soul | |
| Become image | Become Image | |
| Task | Model | Slug |
|---|---|---|
| Brand style training | Z Image Trainer | |
| Portrait LoRA | Flux LoRA Portrait Trainer | |
| Task | Model | Slug |
|---|---|---|
| Runway video | Pixverse v5.6 Image-to-Video | |
| Catwalk animation | Bytedance Omnihuman v1.5 | |
| Motion reference | Kling v2.6 Pro Motion | |
GET https://api.eachlabs.ai/v1/model?slug=<slug>request_schemahttps://api.eachlabs.ai/v1/prediction"0.0.1"GET https://api.eachlabs.ai/v1/prediction/{id}"success""failed"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"
}
}'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"
}
}'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"
}
}'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"
}
}'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
}
}'