Skip to main content
GET
/
v1
/
events
/
Retrieve all events for current organization and project.
curl --request GET \
  --url https://api.mem0.ai/v1/events/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "event_type": "<string>",
      "status": "PENDING",
      "payload": {},
      "metadata": {},
      "results": [
        "<any>"
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "latency": 123
    }
  ]
}
List recent events for your organization and project.

Use Cases

  • Dashboards: Summarize adds/searches over time by paging through events.
  • Alerting: Poll for FAILED events and trigger follow-up workflows.
  • Audit: Store the returned payload/metadata for compliance logs.

Authorizations

Authorization
string
header
required

API key authentication. Prefix your Mem0 API key with 'Token '. Example: 'Token your_api_key'

Response

200 - application/json

Successfully retrieved events.

count
integer
required

Total number of events matching the filters.

results
object[]
required

Array of event objects.

next
string | null

URL for the next page of results.

previous
string | null

URL for the previous page of results.