Skip to main content
GET
/
api
/
v2
/
agents
/
{agent_id}
/
recall
/
current
curl -X GET "http://localhost:8000/api/v2/agents/my-agent/recall/current" \
  -H "Authorization: Bearer your_api_key" \
  -H "X-Session-Token: your_session_token"

Overview

Query memories from specific time periods.

Authentication

  • Authorization: Bearer your_api_key
  • X-Session-Token: {session_token}

Path Parameters

agent_id
string
required
Agent identifier.
query
string
required
Search query.
limit
integer
Max results (default: 5).
curl -X GET "http://localhost:8000/api/v2/agents/my-agent/recall/current" \
  -H "Authorization: Bearer your_api_key" \
  -H "X-Session-Token: your_session_token"
Returns only current (non-superseded) memories.