Skip to main content
GET
/
emails
List sent emails
curl --request GET \
  --url https://api.maxcare.ai/v3/emails \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Organization-Id: <x-organization-id>'
{
  "code": "success",
  "data": {
    "emails": [
      {
        "id": "eml_a7c3f1e28b4d4a9eb5c6d7e8f9012345",
        "recipientEmail": "jane.doe@example.com",
        "recipientType": "patient",
        "recipientId": "pat_8de030393a9e417ab2b3a8b8df183631",
        "emailType": "appointment_reminder",
        "subject": "Your upcoming appointment on March 25",
        "fromAddress": "notifications@accounts.maxcare.ai",
        "status": "sent",
        "scheduledAt": null,
        "sentAt": "2026-03-25 10:00:01.234+00",
        "deliveredAt": "2026-03-25 10:00:03.567+00",
        "openedAt": null,
        "bouncedAt": null,
        "createdAt": "2026-03-25 09:59:58.891+00"
      }
    ],
    "pagination": {
      "page": 1,
      "pageSize": 100,
      "totalCount": 250,
      "totalPages": 3
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.maxcare.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Marketplace API key

Headers

X-Organization-Id
string
required

Target clinic organization ID

Query Parameters

emailType
string

Filter by email type

Example:

"appointment_reminder"

status
string

Filter by delivery status

Example:

"sent"

Response

Success

code
string
required

Response code

Example:

"success"

data
object
required