Skip to main content

Get New Subscriber Engagement Stats

POST 

https://api.tinyemail.com/v1/report/audience/new-subscriber-engagement

Retrieves engagement statistics for new subscribers who were added to the specified audiences (identified by audience IDs) and used in the campaign emails within the provided date range. The response includes data such as the number of emails sent, delivered, opened, clicked, unsubscribed, and marked as spam.
Note:

  • The maximum date range (difference between from and to) allowed is 7 days.
  • The maximum number of segment IDs that can be provided is 10.

Request

Body

    from date-timerequired

    "Start date-time for fetching engagement stats in UTC format(yyyy-MM-dd'T'HH:mm:ss). The difference between 'from' and 'to' dates must not exceed 7 days."

    to date-timerequired

    "End date-time for fetching engagement stats in UTC format(yyyy-MM-dd'T'HH:mm:ss). The difference between 'from' and 'to' dates must not exceed 7 days."

    audienceIds uuid[]required

    List of audience IDs to filter engagement statistics.

Responses

Successful operation

Schema
  • Array [
  • date string
    audienceName string
    sends integer
    delivered integer
    clicks integer
    opens integer
    unsubscribe integer
    subscribe integer
    spam integer
  • ]

Authorization: X-API-KEY

name: X-API-KEYtype: apiKeyin: headerdescription: To obtain API-KEY, please contact our customer support by email support@tinyemail.com or directly by chat.
curl -L -X POST 'https://api.tinyemail.com/v1/report/audience/new-subscriber-engagement' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-API-KEY: <API_KEY_VALUE>' \
--data-raw '{
"from": "2025-02-01T00:00:00Z",
"to": "2025-02-08T00:00:00Z",
"audienceIds": [
"b6c2f3c4-8f92-4a3d-ae6f-2dbb2c58a28d",
"d2f84b5e-45cb-4c7a-bd5e-5a47fd55b23a"
]
}'
Request Collapse all
Base URL
https://api.tinyemail.com/v1
Auth
Body
{
"from": "2025-02-01T00:00:00Z",
"to": "2025-02-08T00:00:00Z",
"audienceIds": [
"b6c2f3c4-8f92-4a3d-ae6f-2dbb2c58a28d",
"d2f84b5e-45cb-4c7a-bd5e-5a47fd55b23a"
]
}
ResponseClear

Click the Send API Request button above and see the response here!