Documentation Index
Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/memory_stores/{memory_store_id}
Retrieves the details of a single Memory Store by ID.
Path parameters
| Parameter | Type | Required | Description |
|---|
memory_store_id | string | Yes | Memory Store ID with the memstore_ prefix |
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
Example request
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/memory_stores/memstore_019e3bb8d50674d9b082b73709c29c87" \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 200 OK
Returns a MemoryStore object.
{
"id": "memstore_019e3bb8d50674d9b082b73709c29c87",
"type": "memory_store",
"name": "doc-test-store",
"description": "Test store",
"status": "active",
"entry_count": 0,
"total_size": 0,
"metadata": {},
"created_at": "2026-05-18T15:33:49.449264Z",
"updated_at": "2026-05-18T15:33:49.449264Z"
}
Response fields
| Field | Type | Description |
|---|
id | string | Unique identifier |
type | string | Always "memory_store" |
name | string | Memory store name |
description | string | Memory store description |
status | string | Status: "active", "archived", or "deleted" |
entry_count | int64 | Number of memory entries |
total_size | int64 | Total storage size in bytes |
metadata | object | Custom metadata |
archived_at | string | Archive time (only present when archived) |
created_at | string | Creation time (ISO 8601) |
updated_at | string | Last update time (ISO 8601) |
Errors
| HTTP | Type | Trigger |
|---|
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
| 404 | not_found_error | Memory Store with the given ID does not exist |
Error response example
{
"error": {
"message": "MemoryStore 'memstore_nonexistent' was not found.",
"type": "not_found_error"
},
"type": "error"
}
See Errors for the full error envelope.