8inbox API Documentation

Welcome to the 8inbox Public API documentation. This API allows external services to interact with inboxes and messages programmatically.

Base URL

https://8inbox.app/api/v1.0

Authentication

All API endpoints require authentication using an access token. The access token is unique to each inbox and can be obtained from the Organization Settings page in your 8inbox dashboard.

You can provide the access token in three ways:

  1. Authorization Header (Recommended):
    Authorization: Bearer YOUR_ACCESS_TOKEN
  2. Query Parameter:
    ?accessToken=YOUR_ACCESS_TOKEN
  3. Request Body (for POST/PUT/PATCH only):
    { "accessToken": "YOUR_ACCESS_TOKEN", ... }