> ## Documentation Index
> Fetch the complete documentation index at: https://superdoc-caio-pizzol-docs-ai-core-preset.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# images.get

> Get details for a specific image by its stable ID.

## Summary

Get details for a specific image by its stable ID.

* Operation ID: `images.get`
* API member path: `editor.doc.images.get(...)`
* Mutates document: `no`
* Idempotency: `idempotent`
* Supports tracked mode: `no`
* Supports dry run: `no`
* Deterministic target resolution: `yes`

## Expected result

Returns an ImageSummary with full image properties.

## Input fields

| Field     | Type   | Required | Description |
| --------- | ------ | -------- | ----------- |
| `imageId` | string | yes      |             |

### Example request

```json theme={null}
{
  "imageId": "example"
}
```

## Output fields

*No fields.*

### Example response

```json theme={null}
{}
```

## Pre-apply throws

* `TARGET_NOT_FOUND`
* `AMBIGUOUS_TARGET`

## Non-applied failure codes

* None

## Raw schemas

<Accordion title="Raw input schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "imageId": {
        "type": "string"
      }
    },
    "required": [
      "imageId"
    ],
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw output schema">
  ```json theme={null}
  {
    "type": "object"
  }
  ```
</Accordion>
