> ## Documentation Index
> Fetch the complete documentation index at: https://docs.drin.run/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve an inbox

> GET /v1/inboxes/{id} — fetch a single receive address by id.

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

**`GET /v1/inboxes/{id}`**

## Path parameters

<ParamField body="id" type="string" required>
  The inbox id, for example `inb_01HZ9C7R2K`.
</ParamField>

## Request

<CodeGroup>
  ```bash cURL theme={null}
  curl https://api.drin.run/v1/inboxes/inb_01HZ9C7R2K \
    -H "Authorization: Bearer $DRIN_API_KEY"
  ```

  ```typescript Node.js theme={null}
  import { DrinClient } from "@drin00/sdk";

  const drin = new DrinClient({ apiKey: process.env.DRIN_API_KEY });

  const inbox = await drin.inboxes.get("inb_01HZ9C7R2K");

  console.log(inbox.address, inbox.displayName);
  ```
</CodeGroup>

## Response

`200 OK` — the inbox. An unknown id returns `404`; see [Errors](/api-reference/errors).

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