Reports

Single Account Report

POST/v1/reports
POST
/v1/reports

Get daily warmup report for a single email account

Authorization

X-Api-Key<token>

In: header

Request Body

application/jsonRequired

emailAccountIdnumber

Example: 12345

fromstring

Start date (YYYY-MM-DD). Defaults to 30 days before to.

Example: "2026-03-01"

tostring

End date (YYYY-MM-DD). Defaults to today.

Example: "2026-03-31"

Responses

200
200 response
{
  "emailAccountId": 12345,
  "from": "2026-03-01",
  "to": "2026-03-31",
  "days": [
    {
      "date": "2026-03-15",
      "sent": 25,
      "inbox": 20,
      "received": 22,
      "spam": 3,
      "bounced": 1,
      "undelivered": 0,
      "replied": 5,
      "deliverabilityRate": 92.5
    }
  ]
}

Request

curl -X POST \
  "https://lupus-edge.trulyinbox.com/v1/reports" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "emailAccountId": 12345,
  "from": "2026-03-01",
  "to": "2026-03-31"
}'

Response

No response body