Skip to main content
GET
/
api
/
v2
/
status
curl -X GET "http://localhost:8000/api/v2/status"
{
  "session_id": "9f733fdb-ebf2-494e-8eb6-fb3320d6020d",
  "agent_id": "my-agent",
  "namespace": "memanto_agent_my-agent",
  "started_at": "2026-05-09T02:40:00.313078Z",
  "expires_at": "2026-05-09T08:40:00.313078Z",
  "status": "active",
  "time_remaining_seconds": 21573,
  "pattern": "support"
}

Overview

Returns metadata for the session currently marked active in Memanto’s local state — useful to verify session validity before executing memory operations. The endpoint reads the active session marker on the server; no parameters are required.

Authentication

API clients do not send an API key, Authorization header, or session token for this endpoint. Memanto resolves the active session from local server state.
curl -X GET "http://localhost:8000/api/v2/status"
{
  "session_id": "9f733fdb-ebf2-494e-8eb6-fb3320d6020d",
  "agent_id": "my-agent",
  "namespace": "memanto_agent_my-agent",
  "started_at": "2026-05-09T02:40:00.313078Z",
  "expires_at": "2026-05-09T08:40:00.313078Z",
  "status": "active",
  "time_remaining_seconds": 21573,
  "pattern": "support"
}

Next Steps