Skip to Content
📘 Infrabox developer docs — API reference for mailbox & domain infrastructure.

Warmup

A brand-new mailbox sending real volume immediately is the most common cause of landing in spam. Warmup ramps a mailbox up gradually with real send/reply/open activity before you point cold-email volume at it.

MethodPathDescription
POST/v1/api/warmup/listList warmup subscriptions
GET/v1/api/warmup/detailsGet one subscription’s details
POST/v1/api/warmup/addStart warmup on mailbox(es)
POST/v1/api/warmup/pausePause warmup
POST/v1/api/warmup/resumeResume paused warmup
POST/v1/api/warmup/cancelCancel warmup
GET/v1/api/warmup/statsGet warmup statistics (volume, inbox rate, etc.)
GET/v1/api/warmup/pricingGet current warmup pricing

Start warmup

curl -X POST https://api.infrabox.software/v1/api/warmup/add \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "X-Workspace-Id: YOUR_WORKSPACE_UID" \ -H "Content-Type: application/json" \ -d '{ "mailbox_uids": ["mb_111", "mb_222"] }'

Warmup is billed separately from mailbox provisioning — check /v1/api/warmup/pricing before enabling it on a large batch.

Errors

StatusMeaning
400Invalid body
401Missing/invalid API key
404Mailbox or subscription not found
500Internal error
Last updated on