Version 1.0.0 | Channel: 1429866583131558101
Get latest messages from the channel
Query params: limit (default: 50, max: 100)
curl http://localhost:3333/api/messages?limit=10
Get only the most recent message
curl http://localhost:3333/api/messages/latest
Get all messages after a specific message ID
curl http://localhost:3333/api/messages/since/1234567890
Health check
curl http://localhost:3333/api/health
{
"success": true,
"channelId": "1429866583131558101",
"count": 10,
"messages": [
{
"id": "1234567890",
"content": "message text",
"author": {
"id": "...",
"username": "Vulcan",
"bot": true
},
"timestamp": "2025-10-23T10:00:00.000Z",
"embeds": [...]
}
]
}