JavaScript
import Nuntly from '@nuntly/sdk'; const client = new Nuntly({ apiKey: process.env['NUNTLY_API_KEY'], }); const response = await client.emails.stats.retrieve();
{ "data": { "start": "<string>", "end": "<string>", "stats": [ { "occurredOn": "<string>", "queued": 123, "scheduled": 123, "processed": 123, "sending": 123, "sent": 123, "delivered": 123, "deliveredDelayed": 123, "bounced": 123, "failed": 123, "rejected": 123, "canceled": 123, "complaintReceived": 123, "renderingFailed": 123, "opened": 123, "uniqueOpened": 123, "clicked": 123, "uniqueClicked": 123 } ] } }
Returns aggregated daily sending statistics for the current period.
Documentation IndexFetch the complete documentation index at: https://nuntly.com/docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://nuntly.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response.
Show child attributes