---
title: "Saved Item Details"
method: GET
path: "/saved/{item_id}/details"
tags: ["saved"]
---

# Saved Item Details

`GET /saved/{item_id}/details`

## Path parameters

- `item_id` string, uuid, required

## Response `200`

Successful Response

- SavedItemDetailsOut — A saved place hydrated to a full attraction card (photos, rating, hours, etc.) plus the import reference — so the detail pane shows both the place and where it came from. `card` is None when the place can't be re-resolved.
  - `item_id` string, uuid, required
  - `name` string, required
  - `caption` string, nullable, required
  - `source` string, required
  - `source_url` string, nullable, required
  - `is_shared` boolean, required
  - `review_state` string, nullable, required
  - `card` object, nullable, required
  - `tabelog` TabelogBlock — The Tabelog leg of the aggregator ratings row (STA-515). Deliberately carries a bucketed PERCENTILE TIER and never the raw score. Tabelog's scale is not Google's — its median rated restaurant sits near 3.1 and a 3.5 is exceptional — so "3.43" beside Google's "4.7" reads as worse to a user who doesn't know that. The tier is computed server-side (`api/utils/tabelog_tiers.py`) and the rating is dropped before it ever reaches a response model, so no client can render it by accident.
    - `tier` integer, required
    - `rating_count` integer, required
    - `url` string, required
  - `sources` ReelSourceOut[], required
    - `list_id` string, uuid, required
    - `list_title` string, required
    - `source_author` string, nullable, required
    - `cover_image_url` string, nullable, required
    - `source_url` string, nullable, required
    - `caption` string, nullable, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/stardrift/apis/fastapi.md) · [All operations](https://skmtc.dev/stardrift/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stardrift/fastapi/revisions/00746572572a/schema)
