pose-suggestion-lora-of-qwen-image-edit-2509Generate AI pose suggestions for a reference scene image. The input image must have a maximum edge length of 512 pixels to achieve the best output quality..
/v1/images/pose-suggestCredit cost: 28
Authorization — This endpoint requires an API key. Pass it in the api-key header on every request. See the quickstart
| Name | Type | Status | Description |
|---|---|---|---|
input_image | file | Required | Reference scene image file or URL. |
num_models | integer | Required | Number of pose suggestions to generate. |
gender | string | Required | Gender for pose suggestions. femalemale |
Pose suggestions generated successfullySingleImageResponse
| Name | Type | Description |
|---|---|---|
created | integer | Unix timestamp of when the response was created |
data | object[] | |
url | string | URL to download the result image |
curl -X POST "https://api.snapapi.ai/v1/images/pose-suggest" \
-H "api-key: YOUR_API_KEY" \
-F "input_image=@./image.jpg" \
-F "num_models=value" \
-F "gender=female"{
"created": 1745827200,
"data": [
{
"url": "https://outputs.snapapi.ai/outputs/abc123.png"
}
]
}