Skip to main content
GET
/
email-accounts
List email accounts
curl --request GET \
  --url https://api.reply.io/v3/email-accounts \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": 12345,
      "userId": 42,
      "email": "john.doe@company.com",
      "senderName": "John Doe",
      "emailAccountType": "Gmail",
      "isDefault": true,
      "dailyLimit": 500,
      "connectionStatus": "connected",
      "tags": [
        "Marketing",
        "Outbound"
      ]
    }
  ],
  "hasMore": true
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Query Parameters

top
integer

Maximum number of items to return (default 25, max 1000)

skip
integer

Number of items to skip

Response

Paginated list of email accounts

items
EmailAccountListItem · object[]
hasMore
boolean

Whether more items are available beyond the current page