cURL
curl --request GET \ --url https://api.mem0.ai/v1/events/ \ --header 'Authorization: <api-key>'
{ "count": 123, "results": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "event_type": "<string>", "status": "PENDING", "payload": {}, "metadata": {}, "results": "<array>", "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 } ], "next": "<string>", "previous": "<string>" }
FAILED
API key authentication. Prefix your Mem0 API key with 'Token '. Example: 'Token your_api_key'
Successfully retrieved events.
Total number of events matching the filters.
Array of event objects.
Show child attributes
The unique identifier of the event.
The type of event (e.g., ADD, SEARCH).
The current status of the event.
PENDING
RUNNING
SUCCEEDED
The original payload associated with the event.
Additional metadata associated with the event.
Array of results produced by the event.
Timestamp when the event was created.
Timestamp when the event was last updated.
Timestamp when event processing started.
Timestamp when event processing completed.
Processing time in milliseconds.
URL for the next page of results.
URL for the previous page of results.
Was this page helpful?