---
title: "List operations"
method: GET
path: "/operations"
tags: ["operations"]
---

# List operations

`GET /operations`

Returns a list of running and completed operations

## Query parameters

- `limit` integer
- `offset` integer
- `status` 'PENDING' | 'EXECUTING' | 'SUCCESS' | 'FAILED' | 'CANCELLED' | 'ASSIGNED'
- `kind` 'image_import' | 'instance'
- `since` string
- `until` string

## Response `200`

OK

- OperationSummary[]
  - `uuid` string, uuid — A UUID string
  - `kind` 'image_import' | 'instance' — Type of the operation
  - `status` 'PENDING' | 'ASSIGNED' | 'EXECUTING' | 'SUCCESS' | 'FAILED' | 'CANCELLED' — Current state of the instance operation
  - `error` string, nullable — Error message if the operation failed
  - `created_at` string — ISO 8601 formatted timestamp when the operation was created
  - `duration` number, nullable — Operation duration in seconds
  - `image_size` integer, nullable — Bytes written for the resulting image/layer(s). `null` when not measured (e.g. disposable instance, non-SUCCESS operations).
  - `consumed_cpu` number, nullable — CPU seconds (user_cpu_time + system_cpu_time) reported by the in-VM init. `null` when not measured.
  - `consumed_memory` integer, nullable — Peak memory (max_rss) reported by the in-VM init; units preserved as reported by getrusage. `null` when not measured.
  - `image_uuid` string, uuid — A UUID string
  - `result_image_uuid` string, uuid — A UUID string

## Other responses

- `400` — Bad Request - Invalid request parameters
- `401` — Unauthorized - Invalid or missing authentication credentials. Either the `Authorization` bearer token is missing or invalid, or the `Project` header is missing.
- `403` — Forbidden - Token does not have sufficient permissions

---

[API](https://skmtc.net/nebius/apis/nebius-openai-compatible-inference-api.md) · [All operations](https://skmtc.net/nebius/apis/nebius-openai-compatible-inference-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nebius/nebius-openai-compatible-inference-api/revisions/0fb323abba3c/schema)
