Skip to main content
GET
/
emails
/
stats
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
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://nuntly.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response.

data
object
required