Skip to main content

What is Gorillaa Mail?

Gorillaa Mail is a transactional email service that lets you send emails programmatically through a REST API. It handles deliverability, domain authentication (SPF, DKIM, DMARC), event tracking, and compliance so you can focus on your product.

Key capabilities

Base URL

All API requests are made to:
https://api.mail.gorillaa.one

Authentication

Every request to /v1/* endpoints requires a Bearer token:
Authorization: Bearer grl_live_xxxxxxxxxxxx

Authentication Guide

Learn about API key formats, scopes, test mode, and best practices.

Quick example

curl -X POST https://api.mail.gorillaa.one/v1/emails \
  -H "Authorization: Bearer grl_live_xxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "[email protected]",
    "to": [{ "email": "[email protected]" }],
    "subject": "Hello from Gorillaa!",
    "html": "<h1>It works!</h1>"
  }'
Response
{
  "data": {
    "id": "em_abc123",
    "status": "queued"
  }
}

Next steps