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

PreWarm

Pre-warm inventory is domains (and the mailboxes on them) that already exist and have aged/warmed history, rather than a brand-new registration — useful when you don’t want to wait out a fresh domain’s own warmup period.

MethodPathDescription
POST/v1/api/prewarm/search-domainsSearch available pre-warmed domains
POST/v1/api/prewarm/search-mailboxesSearch available pre-warmed mailboxes
POST/v1/api/prewarm/buy-domainPurchase a domain from pre-warm inventory
GET/v1/api/prewarm/order-status/{order_uid}Check a pre-warm order’s status
POST/v1/api/prewarm/check-availabilityCheck whether specific pre-warmed domains are still available
curl -X POST https://api.infrabox.software/v1/api/prewarm/search-domains \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "X-Workspace-Id: YOUR_WORKSPACE_UID" \ -H "Content-Type: application/json" \ -d '{ "tlds": ["com", "net"], "min_age_days": 30, "min_available_mailboxes": 3, "platform": "GOOGLE" }'

Inventory availability changes as other customers buy from the same pool — call /check-availability right before /buy-domain if any time passed since you searched.

Errors

StatusMeaning
400Invalid filters
401Missing/invalid API key
404Domain no longer available, or order not found
500Internal error
Last updated on