AI Face Aesthetics
Apply aesthetic adjustments to facial features in images. Supports a wide variety of shape types including face slimming, eye enlargement, nose adjustments, lip modifications, and more.
Quick Start
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "ai-face-aesthetics",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/face-photo.jpg",
"shape_type": "slim_face",
"strength": 0.5
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
image_url |
string |
false |
Upload your face image |
shape_type |
string |
slim_face |
Shape type. Options: cheekbone, cut_face, slim_face, long_face, chin_shortening, chin_lengthening, slim_chin, slim_jaw, big_eyes, eye_angle_1, eye_distance, widen_eye_distance, eye_angle_2, eye_height, slim_nose, nose_wing, nose_length, nose_length_2, lip_width, lip_size, lip_height, human_middle |
strength |
number |
0.5 |
Strength of the effect to apply to the face |
Output
Examples
Slim Face
{
"model": "ai-face-aesthetics",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/portrait.jpg",
"shape_type": "slim_face",
"strength": 0.6
}
}
Enlarge Eyes
{
"model": "ai-face-aesthetics",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/headshot.jpg",
"shape_type": "big_eyes",
"strength": 0.4
}
}
Slim Nose
{
"model": "ai-face-aesthetics",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/face-close-up.jpg",
"shape_type": "slim_nose",
"strength": 0.3
}
}
Related Models
Documentation
1---2name: ai-face-aesthetics3description: Apply facial aesthetic adjustments to face images. Trigger: Use when the user wants to adjust facial features, or requests 'face aesthetics', 'slim face', 'big eyes', 'face reshape', or 'facial enhancement'.4---56# AI Face Aesthetics78Apply aesthetic adjustments to facial features in images. Supports a wide variety of shape types including face slimming, eye enlargement, nose adjustments, lip modifications, and more.910## Quick Start1112```bash13curl -X POST https://api.eachlabs.ai/v1/prediction \14 -H "Content-Type: application/json" \15 -H "X-API-Key: $EACHLABS_API_KEY" \16 -d '{17 "model": "ai-face-aesthetics",18 "version": "0.0.1",19 "input": {20 "image_url": "https://example.com/face-photo.jpg",21 "shape_type": "slim_face",22 "strength": 0.523 }24 }'25```2627## Parameters2829| Parameter | Type | Default | Description |30|-----------|------|---------|-------------|31| `image_url` | string | `false` | Upload your face image |32| `shape_type` | string | `slim_face` | Shape type. Options: `cheekbone`, `cut_face`, `slim_face`, `long_face`, `chin_shortening`, `chin_lengthening`, `slim_chin`, `slim_jaw`, `big_eyes`, `eye_angle_1`, `eye_distance`, `widen_eye_distance`, `eye_angle_2`, `eye_height`, `slim_nose`, `nose_wing`, `nose_length`, `nose_length_2`, `lip_width`, `lip_size`, `lip_height`, `human_middle` |33| `strength` | number | `0.5` | Strength of the effect to apply to the face |3435## Output3637- **Type:** image3839## Examples4041### Slim Face42```json43{44 "model": "ai-face-aesthetics",45 "version": "0.0.1",46 "input": {47 "image_url": "https://example.com/portrait.jpg",48 "shape_type": "slim_face",49 "strength": 0.650 }51}52```5354### Enlarge Eyes55```json56{57 "model": "ai-face-aesthetics",58 "version": "0.0.1",59 "input": {60 "image_url": "https://example.com/headshot.jpg",61 "shape_type": "big_eyes",62 "strength": 0.463 }64}65```6667### Slim Nose68```json69{70 "model": "ai-face-aesthetics",71 "version": "0.0.1",72 "input": {73 "image_url": "https://example.com/face-close-up.jpg",74 "shape_type": "slim_nose",75 "strength": 0.376 }77}78```7980## Related Models8182- [Kling 1.5 Kolors Virtual Try On](../kling-v1-5-kolors-virtual-try-on/SKILL.md) - Virtual garment try-on83- [Remove Background Enhance](../rembg-enhance/SKILL.md) - Remove backgrounds84- [Luma Dream Machine Reframe Image](../reframe-image/SKILL.md) - Reframe and expand images8586## Documentation8788- [EachLabs API Docs](https://docs.eachlabs.ai)