Docs
API · inboxes

Retrieve an inbox

Fetch one inbox by id — its address, display name, owning domain, and type.

GET/v1/inboxes/{id}

01 Path parameters

idstringRequired
The inbox id, for example inb_01HZ9C7R2K.

02 Request

curl https://api.drin.run/v1/inboxes/inb_01HZ9C7R2K \
  -H "Authorization: Bearer $DRIN_API_KEY"

03 Response

200 OK — the inbox. An unknown id returns 404; see Errors.

JSON
{
  "id": "inb_01HZ9C7R2K",
  "senderId": "snd_01HZ0A1B2C",
  "domainId": "dom_01HZ8K3M9P",
  "address": "support@acme.com",
  "displayName": "Acme Support",
  "type": "sending",
  "createdAt": "2026-06-02T09:12:00Z"
}