You can create an ACCESS_TOKEN on your account: https://app.hotbound.co/


Base URL

The base URL for all API requests is:

<https://api.hotbound.co/>

Endpoints

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.

Pricing

With a single domain, you can add up to 15 inboxes.

Request

Headers

{
  "Content-Type": "application/json",
  "Authorization": "Bearer YOUR_ACCESS_TOKEN"
}

Payload

{
  "domain": "example.com",
  "inboxes": [
    {
      "first_name": "John",
      "last_name": "Doe"
      "handle": "john.doe",
    },
    {
      "first_name": "Jane",
      "last_name": "Smith",
      "handle": "jane",
    }
  ]
}