chart_data array.workspace_id + dates) returns stats for every mailbox in the workspace.provider — comma-separated list of sender provider types. Allowed values: GOOGLE_WORKSPACE, MICROSOFT365, REGULAR_ACCOUNT (i.e. SMTP/IMAP).tags — comma-separated list of tag IDs; stats cover mailboxes that carry at least one of the listed tags. Use NO_TAGS for mailboxes without any tag. Example: tags=66f0a1b2c3d4e5f607182930,NO_TAGS.domain — comma-separated list of sending domains (e.g. domain=acme.com,acme.io). Restricts stats to mailboxes whose email address belongs to one of the listed domains. Cannot be combined with provider or tags (returns 400).total_inboxes, total_domains and email_domain_detail describe the mailboxes with warmup enabled that match the filters.curl --location 'https://api.plusvibe.ai/api/v1/account/warmup-stats/overall?workspace_id=6509f7691205283f2a78f98c&start_date=2025-02-01&end_date=2025-02-28&provider=&tags=&domain=' \
--header 'x-api-key: <api-key>'{
"status": "success",
"emailAcc": {
"google_percent": "99.2",
"other_percent": "99.9",
"microsoft_percent": "99.4",
"total_inbox_sent": 10980,
"total_spam_sent": 65,
"total_promotion_sent": 0,
"total_warmup_sent": 11045,
"inbox_percent": "99.4",
"spam_percent": "0.6",
"promotion_percent": "0.0",
"chart_data": [
{
"date": "7 Feb 25",
"dt": "2025-02-07",
"inbox": 683,
"sent": 711,
"spam": 28,
"promotion": 0
}
],
"total_inboxes": 40,
"total_domains": 14,
"email_domain_detail": {
"acme.com": 3,
"acme.io": 2
}
}
}