> For the complete documentation index, see [llms.txt](https://docs.claid.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.claid.ai/ai-fashion-models-api/ai-fashion-models-options.md).

# AI Fashion Models Options

### Pose <a href="#upscale" id="upscale"></a>

The `pose` parameter is a text description of a requested model pose.

```json
"options": {
  "pose": "full body, front view, neutral stance, arms relaxed"
}
```

### Background

The `background` parameter lets you describe a background.

```json
"options": {
  "background": "minimalistic studio background"
}
```

### Aspect Ratio

The `aspect_ratio` defines the final dimensions of the output image. The API supports various common aspect ratios.

```json
"options": {
  "aspect_ratio": "1:1"
}
```

By default, the aspect ratio matches the model image, or one of the clothing images if no model is provided. You can change it to any of the following values:

| Aspect ratio |
| ------------ |
| 1:1          |
| 2:3          |
| 3:2          |
| 3:4          |
| 4:3          |
| 4:5          |
| 5:4          |
| 9:16         |
| 16:9         |
| 21:9         |

### Possible values

| Parameter      | Type   | Range         | Default value                                                                 |
| -------------- | ------ | ------------- | ----------------------------------------------------------------------------- |
| `pose`         | string | 3-5000        | `full body, front view, neutral stance, arms relaxed`                         |
| `background`   | string | 3-5000        | `minimalistic studio background`                                              |
| `aspect_ratio` | string | "1:1".."21:9" | same as model, or same as one of the clothing images, if no model is provided |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.claid.ai/ai-fashion-models-api/ai-fashion-models-options.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
