SnapEditDocs
API Reference

Get pose suggestions

pose-suggestion-lora-of-qwen-image-edit-2509

Generate 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..

post/v1/images/pose-suggest

Credit cost: 28

AuthorizationThis endpoint requires an API key. Pass it in the api-key header on every request. See the quickstart

Body

NameTypeStatusDescription
input_image
fileRequiredReference scene image file or URL.
num_models
integerRequiredNumber of pose suggestions to generate.
gender
stringRequiredGender for pose suggestions.
femalemale

Responses

Pose suggestions generated successfullySingleImageResponse

NameTypeDescription
createdintegerUnix timestamp of when the response was created
dataobject[]
urlstringURL 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"
Response
{
  "created": 1745827200,
  "data": [
    {
      "url": "https://outputs.snapapi.ai/outputs/abc123.png"
    }
  ]
}

Examples

(2 examples)

Input

Input 1

Output

Output