Skip to main content

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

ParameterTypeRequiredDescription
memory_store_idstringYesMemory Store ID with the memstore_ prefix
memory_idstringYesMemory entry ID with the mem_ prefix

Headers

HeaderRequiredDescription
AuthorizationYesBearer $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

FieldTypeDescription
idstringUnique identifier
typestringAlways "memory"
store_idstringOwning Memory Store ID
pathstringRelative path
contentstringFull memory content
sizeint64Content size in bytes
content_sha256stringContent SHA-256 hash
versionint64Current version number
metadataobjectCustom metadata
created_atstringCreation time (ISO 8601)
updated_atstringLast update time (ISO 8601)

Errors

HTTPTypeTrigger
401TOKEN_INVALIDMissing or invalid authentication token
404not_found_errorMemory 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.