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}/memories/{memory_id}
Retrieves the full information of a memory entry by ID, including its content.
Path parameters
| Parameter | Type | Required | Description |
|---|
memory_store_id | string | Yes | Memory Store ID with the memstore_ prefix |
memory_id | string | Yes | Memory entry ID with the mem_ prefix |
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
Example request
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/memory_stores/memstore_xxx/memories/mem_xxx" \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 200 OK
Returns the full MemoryEntry object (including content).
{
"id": "mem_019e3bb965a671fca51bde1cf8d87de0",
"type": "memory",
"store_id": "memstore_019e3bb93b7074f9a5130d39ddcca90f",
"path": "test/note.md",
"content": "Hello world",
"size": 11,
"content_sha256": "64ec88ca00b268e5ba1a35678a1b5316d212f4f366b2477232534a8aeca37f3c",
"version": 1,
"metadata": {},
"created_at": "2026-05-18T15:34:26.494349Z",
"updated_at": "2026-05-18T15:34:26.494349Z"
}
Response fields
| Field | Type | Description |
|---|
id | string | Unique identifier |
type | string | Always "memory" |
store_id | string | Owning Memory Store ID |
path | string | Relative path |
content | string | Full memory content |
size | int64 | Content size in bytes |
content_sha256 | string | Content SHA-256 hash |
version | int64 | Current version number |
metadata | object | Custom metadata |
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 or memory entry does not exist |
Notes
- This endpoint returns the
content field (unlike the list endpoint).
- Use it to fetch the full content of the latest version.
See Errors for the full error envelope.