---
title: "Retrieve a storage item"
method: GET
path: "/storage/{storage_id}"
tags: ["Storage"]
---

# Retrieve a storage item

`GET /storage/{storage_id}`

Returns a single storage item by ID, including a signed download URL for the file.

## Path parameters

- `storage_id` string, required

## Response `200`

OK

- GetStorageItemResponse — A storage item representing a file captured during a task run.
  - `id` string, required — Unique identifier for the storage item, prefixed with `stor_`.
  - `object` string, required — Always `storage`.
  - `file_name` string, required — Original file name as it appeared on the source.
  - `file_type` string, required — MIME type (e.g. `application/pdf`, `image/png`, `text/csv`).
  - `file_size` union, required — File size in bytes.
    - integer
    - string, int64
  - `url` string, nullable, required — Signed download URL for the file.
  - `metadata` unknown, required
  - `extraction` unknown, required
  - `task_run_id` string, required — The task run that produced this storage item. Prefixed with `trun_`.
  - `result` string, required — Extraction outcome: `failure` if the file's data couldn't be extracted, otherwise `success` (including files with no extraction).
  - `created_at` string, date-time, required — ISO 8601 timestamp of when the resource was created.

## Other responses

- `400` — Bad request — validation error or malformed input.
- `401` — Unauthorized.
- `403` — Forbidden.
- `404` — Not found — the requested resource does not exist.
- `409` — Conflict — the request is valid but cannot be completed in the current state.
- `422` — Unprocessable content — the request body is understood but contains invalid values.
- `429` — Too many requests or session concurrency exceeded. Retry with backoff; honor Retry-After and RateLimit headers when present.
- `500` — Internal server error.

---

[API](https://skmtc.dev/deck/apis/deck-api.md) · [All operations](https://skmtc.dev/deck/apis/deck-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/deck/deck-api/revisions/eba6e2cc9351/schema)
