List all addresses
curl --request GET \
--url https://inboundr.net/api/v1/addresses \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://inboundr.net/api/v1/addresses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://inboundr.net/api/v1/addresses"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://inboundr.net/api/v1/addresses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": [
{
"id": "addr_123",
"domainId": "dom_123",
"localPart": "support",
"endpointId": "ep_123",
"active": true,
"createdAt": "2026-07-20T10:00:00.000Z"
}
]
}
Email Addresses
List all addresses
List every explicit address route on the account.
GET
/
api
/
v1
/
addresses
List all addresses
curl --request GET \
--url https://inboundr.net/api/v1/addresses \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://inboundr.net/api/v1/addresses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://inboundr.net/api/v1/addresses"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://inboundr.net/api/v1/addresses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": [
{
"id": "addr_123",
"domainId": "dom_123",
"localPart": "support",
"endpointId": "ep_123",
"active": true,
"createdAt": "2026-07-20T10:00:00.000Z"
}
]
}
Returns all explicit address routes. (Verified domains
also accept mail on any address via catch-all, which isn’t listed here.)
{
"data": [
{
"id": "addr_123",
"domainId": "dom_123",
"localPart": "support",
"endpointId": "ep_123",
"active": true,
"createdAt": "2026-07-20T10:00:00.000Z"
}
]
}
string | null
The webhook endpoint mail is delivered to, or
null for a store-only inbox.⌘I