# List all addresses

> List every explicit address route on the account.

`GET https://inboundr.net/api/v1/addresses`

Returns all explicit [address routes](/concepts/addresses). (Verified domains
also accept mail on any address via catch-all, which isn't listed here.)

<ResponseExample>
```json 200
{
  "data": [
    {
      "id": "addr_123",
      "domainId": "dom_123",
      "localPart": "support",
      "endpointId": "ep_123",
      "active": true,
      "createdAt": "2026-07-20T10:00:00.000Z"
    }
  ]
}
```
</ResponseExample>

<ResponseField name="data[].endpointId" type="string | null">
  The webhook endpoint mail is delivered to, or `null` for a store-only inbox.
</ResponseField>
