list_memories
const url = 'https://app.everruns.com/api/v1/memories';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.everruns.com/api/v1/memoriesList workspace memories.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Responses
Section titled “ Responses ”List memories
Response wrapper for list endpoints.
All list endpoints return responses wrapped in a data field.
object
Array of items returned by the list operation.
Response body for memory.
object
Timestamp when this resource was archived, if any (RFC 3339).
Timestamp when this resource was created (RFC 3339).
Timestamp when this resource was soft-deleted, if any (RFC 3339).
Human-readable description. Safe to render in user-facing messages.
Prefixed public identifier. See ID Schema.
Whether the memory is mounted read-only into sessions. Read-only memories accept no writes from the session sandbox.
Most recent sync error message; cleared on the next successful sync.
Timestamp of the most recent successful sync (RFC 3339). None if never synced.
Human-readable name. Safe to render in user-facing messages.
Source-specific configuration (git remote, github repo, manual upload).
object
Source-specific configuration (git remote, github repo, manual upload).
object
Automatic resync interval in seconds. Omit or set 0 for manual-only; scheduled sync accepts 300 through 604800.
Source-specific configuration (git remote, github repo, manual upload).
object
Automatic resync interval in seconds. Omit or set 0 for manual-only; scheduled sync accepts 300 through 604800.
Source kind discriminator (manual, git, github). Determines which source variant is populated.
Current lifecycle status.
Current sync status (idle, syncing, succeeded, failed). Only meaningful when source_type is git or github.
Timestamp when this resource was last updated (RFC 3339).
Example
{ "data": [ { "archived_at": "2026-05-26T00:00:00Z", "created_at": "2026-04-01T10:00:00Z", "deleted_at": "2026-05-26T00:00:00Z", "description": "Living design documents synced from GitHub", "id": "mem_01933b5a000070008000000000000001", "is_readonly": false, "last_sync_error": "ssh: connect to host github.com port 22: Connection timed out", "last_synced_at": "2026-05-25T08:00:00Z", "name": "design-docs", "source": { "provider": "manual" }, "source_type": "github", "status": "active", "sync_status": "succeeded", "updated_at": "2026-05-25T08:00:00Z" } ]}