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

# get_image

Get image details by UUID or tag.

## TL;DR

* **Use when**: Verifying an image exists, resolving tag to UUID
* **Returns**: Image UUID, tag, creation time
* **Cost**: No VM needed

## Parameters

| Parameter | Type   | Required | Default | Description              |
| --------- | ------ | -------- | ------- | ------------------------ |
| `image`   | string | Yes      | -       | Image UUID or `tag:name` |

## Response

```json theme={null}
{
  "uuid": "abc123-def456-...",
  "tag": "python:3.11",
  "created_at": "2024-01-15T10:30:00Z"
}
```

## Examples

### By UUID

```json theme={null}
{"tool": "get_image", "args": {"image": "abc123-def456-..."}}
```

### By Tag

```json theme={null}
{"tool": "get_image", "args": {"image": "tag:python:3.11"}}
```

## See Also

* [list\_images](./list_images) - List all images
* [set\_tag](./set_tag) - Assign a tag
