Skip to main content
Version: 0.25.9

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

    agentId uuidrequired

    ID of the agent

    roomId uuidrequired

    ID of the room (conversation context)

Responses

List of memories
Schema
    agentIduuid
    roomIduuid
    memoriesobject[]
  • Array [

  • iduuid

    Unique identifier for the memory

    userIduuid

    ID of the user associated with this memory

    agentIduuid

    ID of the agent associated with this memory

    createdAtint64

    Unix timestamp when the memory was created

    contentobject
    textstring

    Text content of the message

    actionstring

    Action associated with the message (if any)

    sourcestring

    Source of the message (e.g., "direct", "hyperfi")

    urlstring

    URL associated with the message (if any)

    inReplyTostring

    ID of the message this is in reply to (if any)

    attachments

    object[]

    List of attachments

  • Array [

  • idstring

    Unique identifier for the attachment

    urlstring

    URL or path to the attachment file

    titlestring

    Title of the attachment

    sourcestring

    Source of the attachment

    descriptionstring

    Description of the attachment

    textstring

    Text content extracted from the attachment (if applicable)

    contentTypestring

    MIME type of the attachment

  • ]

  • embeddingfloat[]

    Vector embedding for semantic search

    roomIduuid

    ID of the room this memory belongs to

    uniqueboolean

    Whether this memory is unique

    similarityfloat

    Similarity score (if this was retrieved via search)

  • ]