chart_data array.page to walk through all mailboxes in the workspace (ordered by mailbox ID). Mailboxes without warmup activity in the range are included with zero counts. The date range may span at most 14 days (warmup stats are kept for the last 14 days). Set include_chart=false when only the totals are needed.email_acc_ids with a comma-separated list of up to 100 email account IDs to return only those mailboxes in one call. page is ignored in that case, and has_more is always false.GET /account/warmup-stats/bulk?workspace_id=6509f7691205283f2a79f98c&start_date=2026-03-01&end_date=2026-03-14&email_acc_ids=65a1b2c3d4e5f60718293a4b,65a1b2c3d4e5f60718293a4cmissing_ids.curl --location 'https://api.plusvibe.ai/api/v1/account/warmup-stats/bulk?workspace_id=6509f7691205283f2a79f98c&start_date=2026-03-01&end_date=2026-03-14&page=1&limit=100&include_chart=true' \
--header 'x-api-key: <api-key>'{
"page": 1,
"limit": 100,
"total_accounts": 248,
"has_more": true,
"accounts": [
{
"email_acc_id": "65a1b2c3d4e5f60718293a4b",
"email": "sales@example.com",
"warmup_status": "ACTIVE",
"google_percent": "98.7",
"microsoft_percent": "100.0",
"other_percent": "99.1",
"total_inbox_sent": 561,
"total_spam_sent": 2,
"total_promotion_sent": 1,
"total_warmup_sent": 564,
"inbox_percent": "99.5",
"spam_percent": "0.4",
"promotion_percent": "0.2",
"chart_data": [
{
"date": "1 Mar 26",
"dt": "2026-03-01",
"sent": 43,
"inbox": 42,
"spam": 1,
"promotion": 0
},
{
"date": "2 Mar 26",
"dt": "2026-03-02",
"sent": 41,
"inbox": 41,
"spam": 0,
"promotion": 0
}
]
}
]
}