Response Format
All responses are JSON. Successful responses wrap data in a data key. List endpoints include a meta object for pagination.
Single resource
{
"data": {
"id": "inbox_abc123",
"username": "support-bot",
"address": "support-bot@mailbot.id",
"created_at": "2026-03-15T10:30:00Z"
}
}
List response
{
"data": [...],
"meta": {
"total": 42,
"page": 1,
"per_page": 20
}
}