Skip to content

The durable memory the AI keeps for a conversation

GET
/conversation/memory/{conversationId}/atoms
curl --request GET \
--url https://api.harperharbor.com/open/v1/conversation/memory/example/atoms \
--header 'Authorization: Bearer <token>'
conversationId
required
string

Newest first.

Media typeapplication/json
object
atoms
Array<object>
object
atomId
string
atomValue
string
importance
number
createTime
string
Examplegenerated
{
"atoms": [
{
"atomId": "example",
"atomValue": "example",
"importance": 1,
"createTime": "example"
}
]
}