Higgsfield AI Soul
Generate stylized images from prompts and reference photos using Higgsfield AI Soul. Choose from 70+ creative styles including Realistic, Anime, Vintage, Fashion, and more. Supports custom references and batch generation.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "higgsfield-ai-soul",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/selfie.jpg",
"prompt": "A stunning portrait in a modern setting",
"quality": "1080p",
"aspect_ratio": "1536x2048"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
|
Output dimensions. enum: 1152x2048, 2048x1152, 2048x1536, 1536x2048, 1344x2016, 2016x1344, 960x1696, 1536x1536, 1536x1152, 1696x960, 1152x1536, 1088x1632, 1632x1088 |
| batch_size |
integer |
1 |
Number of images to generate |
| custom_reference_id |
string |
|
Custom reference ID for consistent styling |
| custom_reference_strength |
number |
|
Strength of custom reference influence |
| image_url |
string |
|
URL of the input reference image |
| prompt |
string |
|
Text prompt describing the desired image |
| quality |
string |
720p |
Output quality. enum: 720p, 1080p |
| seed |
integer |
|
Random seed for reproducibility |
| style_id |
string |
|
Style preset ID (choose from 70+ styles like Realistic, Creatures, Medieval, etc.) |
| style_strength |
number |
|
Strength of the style influence |
Examples
Stylized portrait with preset:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "higgsfield-ai-soul",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/profile-photo.jpg",
"prompt": "Professional headshot with dramatic lighting",
"style_id": "1cb4b936-77bf-4f9a-9039-f3d349a4cdbe",
"quality": "1080p",
"aspect_ratio": "1536x2048",
"batch_size": 1
}
}'
Batch generation with seed:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "higgsfield-ai-soul",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/photo.jpg",
"prompt": "Creative fashion editorial in a futuristic city",
"quality": "720p",
"aspect_ratio": "2048x1152",
"batch_size": 4,
"seed": 42
}
}'
Related Models
Documentation
1---2name: higgsfield-ai-soul3description: Higgsfield AI Soul. Generate stylized images from prompts and reference photos using Higgsfield AI Soul with 70+ creative styles. Triggers: higgsfield, soul, stylized image, ai portrait, photo style, higgsfield soul4---56# Higgsfield AI Soul78Generate stylized images from prompts and reference photos using Higgsfield AI Soul. Choose from 70+ creative styles including Realistic, Anime, Vintage, Fashion, and more. Supports custom references and batch generation.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "higgsfield-ai-soul",20 "version": "0.0.1",21 "input": {22 "image_url": "https://example.com/selfie.jpg",23 "prompt": "A stunning portrait in a modern setting",24 "quality": "1080p",25 "aspect_ratio": "1536x2048"26 }27 }'28```2930## Parameters3132| Parameter | Type | Default | Description |33|-----------|------|---------|-------------|34| aspect_ratio | string | | Output dimensions. enum: 1152x2048, 2048x1152, 2048x1536, 1536x2048, 1344x2016, 2016x1344, 960x1696, 1536x1536, 1536x1152, 1696x960, 1152x1536, 1088x1632, 1632x1088 |35| batch_size | integer | 1 | Number of images to generate |36| custom_reference_id | string | | Custom reference ID for consistent styling |37| custom_reference_strength | number | | Strength of custom reference influence |38| image_url | string | | URL of the input reference image |39| prompt | string | | Text prompt describing the desired image |40| quality | string | 720p | Output quality. enum: 720p, 1080p |41| seed | integer | | Random seed for reproducibility |42| style_id | string | | Style preset ID (choose from 70+ styles like Realistic, Creatures, Medieval, etc.) |43| style_strength | number | | Strength of the style influence |4445## Examples4647**Stylized portrait with preset:**48```bash49curl -X POST https://api.eachlabs.ai/v1/prediction \50 -H "Content-Type: application/json" \51 -H "X-API-Key: $EACHLABS_API_KEY" \52 -d '{53 "model": "higgsfield-ai-soul",54 "version": "0.0.1",55 "input": {56 "image_url": "https://example.com/profile-photo.jpg",57 "prompt": "Professional headshot with dramatic lighting",58 "style_id": "1cb4b936-77bf-4f9a-9039-f3d349a4cdbe",59 "quality": "1080p",60 "aspect_ratio": "1536x2048",61 "batch_size": 162 }63 }'64```6566**Batch generation with seed:**67```bash68curl -X POST https://api.eachlabs.ai/v1/prediction \69 -H "Content-Type: application/json" \70 -H "X-API-Key: $EACHLABS_API_KEY" \71 -d '{72 "model": "higgsfield-ai-soul",73 "version": "0.0.1",74 "input": {75 "image_url": "https://example.com/photo.jpg",76 "prompt": "Creative fashion editorial in a futuristic city",77 "quality": "720p",78 "aspect_ratio": "2048x1152",79 "batch_size": 4,80 "seed": 4281 }82 }'83```8485## Related Models8687- [higgsfield-ai-visual-effects](../higgsfield-ai-visual-effects/) - Visual effects and video generation8889## Documentation9091- [each::labs Docs](https://docs.eachlabs.ai)92- [API Reference](https://docs.eachlabs.ai/api/overview)