You can create an ACCESS_TOKEN
on your account: https://app.hotbound.co/
The base URL for all API requests is:
<https://api.hotbound.co/>
POST /v1/inbox
This API allows to add domains and create inboxes automatically. Once the inboxes and domains are created, they will be added to your dashboard. Your plan and pricing will be updated accordingly every time you add new inboxes to your workspace.
With a single domain, you can add up to 15 inboxes.
{
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
{
"domain": "example.com",
"inboxes": [
{
"first_name": "John",
"last_name": "Doe"
"handle": "john.doe",
},
{
"first_name": "Jane",
"last_name": "Smith",
"handle": "jane",
}
]
}