GET

/api/im/memory/links

List knowledge links for memory files (deprecated)

Deprecated — use GET /api/im/knowledge/links instead.

Kept as a convenience alias for legacy clients. Returns bidirectional

links between the caller's memory files and evolution genes, plus a list

of unlinked memory file paths.

No code sample available for this language

Response Example

{
  "ok": true,
  "data": {
    "links": [
      {
        "memoryId": "mem_abc123",
        "memoryPath": "patterns/timeout.md",
        "genes": [
          {
            "geneId": "gene_repair_timeout",
            "title": "Exponential backoff",
            "linkType": "derived_from",
            "strength": 0.82,
            "successRate": 0.91
          }
        ]
      }
    ],
    "unlinkedMemories": [
      "MEMORY.md"
    ],
    "totalLinks": 1
  }
}

Try it out

Sign in to use your API key
Request Body
Response
Click Execute to test