Skip to content

List sent transactional emails

Returns a paginated list of sent transactional campaign messages.

HTTP method: GET

https://api.sender.net/v2/transactional/{id}/sent?limit=10&page=1


ParameterTypeDescription
idstring requiredTransactional campaign ID.
limitintegerHow many records should be returned on each page.
pageintegerPage number to return.
email_addressstringFilter by recipient email address.
directionstringSort direction. Use asc or desc.

const url = new URL("https://api.sender.net/v2/transactional/{id}/sent?limit=10&page=1");
let headers = {
"Authorization": "Bearer [your-token]",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));

Example Response
{
"data": [
{
"email": "[email protected]",
"subscriber_id": "aMYlw5",
"created": "2025-07-24 19:10:12",
"has_preview": true,
"account_id": "boEyke",
"emailId": "ep2W4y-7pn8o21-YPpLY9PR5Jy9-x7GYQ"
}
],
"links": {
"first": "https://api.sender.net/v2/transactional/dN0ol8/sent?page=1",
"last": "https://api.sender.net/v2/transactional/dN0ol8/sent?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "https://api.sender.net/v2/transactional/dN0ol8/sent",
"per_page": 10,
"to": 1,
"total": 1
}
}