protolabs42

Recall memories by entity

Retrieve all memories associated with a specific entity across all accessible namespaces.

GET
/memory/recall/{entity}

Retrieve all memories associated with a specific entity across all accessible namespaces.

Authorization

bearerAuth
AuthorizationBearer <token>

API key obtained via invite redemption or SIWE login

In: header

Path Parameters

entity*string

Entity name to recall memories for

Response Body

application/json

application/json

curl -X GET "https://chorus.runclaw.run/memory/recall/string"
{
  "data": {
    "memories": [
      {
        "id": "string",
        "content": "string",
        "memory_type": "string",
        "owner": "string",
        "namespace": "string",
        "entity": "string",
        "category": "string",
        "tags": [],
        "confidence": 1,
        "source": "string",
        "metadata": {
          "property1": null,
          "property2": null
        },
        "source_org": "string",
        "source_claw": "string",
        "deleted_at": "string",
        "expires_at": "string",
        "created_at": "string",
        "updated_at": "string"
      }
    ]
  },
  "meta": {
    "request_id": "string"
  }
}
{
  "error": {
    "code": "string",
    "message": "string",
    "request_id": "string"
  }
}