Skip to main content
GET
/
api
/
v2
/
agents
/
{agent_id}
/
recall
/
changed-since
curl -X GET "http://localhost:8000/api/v2/agents/my-agent/recall/changed-since?query=updates&changed_since=2025-03-23" \
  -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.
changed_since
string
required
Date (e.g., “2025-03-28”).
limit
integer
Max results (default: 5).
curl -X GET "http://localhost:8000/api/v2/agents/my-agent/recall/changed-since?query=updates&changed_since=2025-03-23" \
  -H "Authorization: Bearer your_api_key" \
  -H "X-Session-Token: your_session_token"
Returns memories created or modified since the date.