curl --request POST \
--url https://cloudapi.mailercloud.com/v1/reply-emails/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: <content-type>' \
--data '
{
"limit": 10,
"page": 1,
"search": "support@"
}
'{
"count": 2,
"data": [
{
"id": "ixss",
"reply_email": "reply1@example.com",
"status": "Verified"
},
{
"id": "yFXf",
"reply_email": "support@example.com",
"status": "Verified"
}
]
}List Reply Emails
Use this API to return an array of all your active reply-to email addresses. You can filter and search reply emails with pagination.
POST
/
reply-emails
/
search
curl --request POST \
--url https://cloudapi.mailercloud.com/v1/reply-emails/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: <content-type>' \
--data '
{
"limit": 10,
"page": 1,
"search": "support@"
}
'{
"count": 2,
"data": [
{
"id": "ixss",
"reply_email": "reply1@example.com",
"status": "Verified"
},
{
"id": "yFXf",
"reply_email": "support@example.com",
"status": "Verified"
}
]
}Authorizations
Your Mailercloud API key (plain text, no Bearer prefix). Create keys in Settings → API.
Headers
Request body type
Body
application/json
Maximum number of elements to return.
Maximum: 100 Minimum: 10
Required range:
10 <= x <= 100You can retrieve a subset of records starting from the page value you have specified. You can add a limit, which will determine the number of records you can retrieve on a single page.
Starts From: 1
Required range:
x >= 1Filter reply emails by email address. Partial match is supported.
Maximum string length:
255