Load agent memory
memory_loadLoad a memory you saved in an earlier session — retrieval is free.
Get back an encrypted blob you parked earlier (the blind locker) by its
claim ticket. Returns {ok, blob_b64, size_bytes, expires_at} — the
ciphertext you saved, which only YOU can decrypt. A wrong owner reads as a
missing ticket; an expired TTL is expired; a lost at-rest key is
at_rest_key_unavailable. Free (the save settled it).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticket | Yes | The claim ticket returned by memory_save. | |
| api_key | Yes | The same SNHP API key you saved under (a different owner reads as a missing ticket). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | No | ||
| code | No | ||
| error | No | ||
| reason | No | ||
| charged | No | ||
| blob_b64 | No | ||
| expires_at | No | ||
| size_bytes | No |