> ## Documentation Index
> Fetch the complete documentation index at: https://docs.artaios.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Upload Image

Upload an image for use in multimodal messages.

## Request

This endpoint typically expects a `multipart/form-data` request with the file.

<ParamField body="file" type="file" required>
  The image file to upload.
</ParamField>

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.artaios.ai/api/v1/images/upload/ \
    -H "Authorization: Bearer YOUR_TOKEN" \
    -F "file=@/path/to/image.jpg"
  ```
</CodeGroup>

## Response

Returns the uploaded image details and URL to be referenced in multimodal content.
