Gebouwd voor ontwikkelaars

Integreer e-mail marketing in je applicatie met onze REST API. Volledige documentatie, code-voorbeelden en webhooks.

Token-authenticatie

Veilige Bearer token auth met scoped API keys per account.

JSON:API format

Consistente, voorspelbare API responses volgens de JSON:API specificatie.

Real-time webhooks

Ontvang events voor bounces, klachten, opens en clicks via configureerbare webhook endpoints.

Rate limiting

Eerlijke rate limits per account met duidelijke headers en retry-after informatie.

Snel aan de slag

Voeg een contact toe met één API call.

terminal
curl -X POST https://api.euromailing.com/v1/contacts \
  -H "Authorization: Bearer em_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "contact": {
      "email": "jan@voorbeeld.nl",
      "first_name": "Jan",
      "last_name": "De Vries"
    }
  }'
201 application/json
{
  "data": {
    "id": "a1b2c3d4-...",
    "type": "contact",
    "attributes": {
      "email": "jan@voorbeeld.nl",
      "first_name": "Jan",
      "last_name": "De Vries",
      "subscribed_at": "2026-03-23T10:30:00Z"
    }
  }
}