# Get senders

**Summary:** Get the list of email senders in Subrite, with sender name, sender email and reply-to address. The sender id is the senderId you use when sending an email.

- Space: [Developers](https://www.subrite.no/developers)
- Source: https://www.subrite.no/developers/email-senders
- Updated: 2026-09-23
- Markdown index: https://www.subrite.no/developers/llms.txt

Get the email sender list from Subrite.

- **Method:** `GET`
- **Route:** `{baseUrl}/api/v1/communications/email/senders`
- **Authorization:** Bearer token (use the M2M token from [Setup](https://www.subrite.no/developers/email-setup?md=true))

<a id="success-response"></a>
## Success response

```javascript
[
  {
    id: 1,
    createdAt: '2024-11-18T11:54:11.356Z',
    metaData: null,
    senderName: 'sender-name1',
    senderEmail: 'sender@example.no',
    replyTo: null,
    communicationChannel: 'email',
  },
  {
    id: 2,
    createdAt: '2024-11-18T11:54:11.356Z',
    metaData: null,
    senderName: 'sender-name2',
    senderEmail: 'sender2@example.no',
    replyTo: null,
    communicationChannel: 'email',
  },
];
```
