Skip to main content
GET
/
v1
/
emails
/
{id}
Get email details
curl --request GET \
  --url https://api.mail.gorillaa.one/v1/emails/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "queued",
    "fromEmail": "<string>",
    "toEmails": [
      "<string>"
    ],
    "subject": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "events": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "eventType": "queued",
        "source": "<string>",
        "timestamp": "2023-11-07T05:31:56Z",
        "eventData": {}
      }
    ],
    "fromName": "<string>",
    "ccEmails": [
      "<string>"
    ],
    "bccEmails": [
      "<string>"
    ],
    "sentAt": "2023-11-07T05:31:56Z",
    "deliveredAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your Gorillaa Mail API key as a Bearer token.

Example: Authorization: Bearer grl_live_xxxxxxxxxxxx

Keys prefixed grl_test_ operate in test mode with reduced limits.

Path Parameters

id
string<uuid>
required

Email UUID

Response

Email details

data
object
required

Email detail as returned by GET /v1/emails/:id. The handler constructs a specific subset of fields rather than returning the full database row.