Get agent memories for a room
GET/agents/:agentId/:roomId/memories
Retrieves memories (message history) for a specific agent in a specific room
Request
Path Parameters
ID of the agent
ID of the room (conversation context)
Responses
- 200
- 404
- 500
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
memoriesobject[]
Unique identifier for the memory
ID of the user associated with this memory
ID of the agent associated with this memory
Unix timestamp when the memory was created
contentobject
Text content of the message
Action associated with the message (if any)
Source of the message (e.g., "direct", "hyperfi")
URL associated with the message (if any)
ID of the message this is in reply to (if any)
attachments
object[]
List of attachments
Unique identifier for the attachment
URL or path to the attachment file
Title of the attachment
Source of the attachment
Description of the attachment
Text content extracted from the attachment (if applicable)
MIME type of the attachment
Vector embedding for semantic search
ID of the room this memory belongs to
Whether this memory is unique
Similarity score (if this was retrieved via search)
{
"agentId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"roomId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"memories": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"userId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"agentId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"createdAt": 0,
"content": {
"text": "string",
"action": "string",
"source": "string",
"url": "string",
"inReplyTo": "string",
"attachments": [
{
"id": "string",
"url": "string",
"title": "string",
"source": "string",
"description": "string",
"text": "string",
"contentType": "string"
}
]
},
"embedding": [
0
],
"roomId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"unique": true,
"similarity": 0
}
]
}
- text/plain
- Schema
Schema
- application/json
- Schema
- Example (from schema)
Schema
Failed to fetch memories
{
"error": "Failed to fetch memories"
}