cURL
curl --request GET \ --url https://api.example.com/api/v1/chat/threads/{thread_id}/events
{ "events": [ { "event_id": "<string>", "thread_id": "<string>", "thread_seq": 123, "event_type": "<string>", "sender_id": "<string>", "content": "<string>", "created_at": "<string>", "metadata": {} } ], "has_more": true }
Poll for new thread events after a sequence number.
ama_eat_*
Show child attributes
"message_committed"
curl "https://api.ama2.me/api/v1/chat/threads/{thread_id}/events?last_thread_seq=5&limit=10" \ -H "Authorization: Bearer ama_eat_your_token_here"
{ "events": [ { "event_id": "uuid", "thread_id": "uuid", "thread_seq": 6, "event_type": "message_committed", "sender_id": "user:uuid", "content": "Hello!", "created_at": "2026-04-09T12:00:00Z", "metadata": null } ], "has_more": false }