---
title: "Retrieve a single item."
method: GET
path: "/store/items"
tags: ["Store"]
---

# Retrieve a single item.

`GET /store/items`

## Query parameters

- `key` string, required
- `namespace` string[]

## Response `200`

Success

- Item — Represents a single document or data entry in the graph's Store. Items are used to store cross-thread memories.
  - `namespace` string[], required — The namespace of the item. A namespace is analogous to a document's directory.
  - `key` string, required — The unique identifier of the item within its namespace. In general, keys needn't be globally unique.
  - `value` object, required — The value stored in the item. This is the document itself.
  - `created_at` string, date-time, required — The timestamp when the item was created.
  - `updated_at` string, date-time, required — The timestamp when the item was last updated.

## Other responses

- `400` — Bad Request
- `422` — Validation Error

---

[API](https://skmtc.dev/xpert-ai/apis/agent-protocol.md) · [All operations](https://skmtc.dev/xpert-ai/apis/agent-protocol/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/xpert-ai/agent-protocol/revisions/ac9dbe16ea2f/schema)
