Vorynza
Vorynza
DashboardPricingDocumentation
Mail guideDomain setupSending emailAPI keys
Mail

API keys

Create, manage, and revoke Mail API keys for programmatic email sending.

Mail API keys authenticate your requests to the Vorynza Mail send API. Each key is scoped to specific permissions.

Creating an API key

API keys are created per mail service from the dashboard. Each key has a name for identification and a scope that controls what the key can do.

Scopes

ScopeDescription
mail:sendSend email through the API
mail:readRead message delivery status

The full key is displayed once after creation:

vnz_mail_abc123_def456...

Store it securely — it cannot be retrieved later.

Key format

vnz_mail_<prefix>_<secret>

Keys are hashed with SHA-256 before storage. The raw key is never persisted.

Using API keys

Include the API key as a Bearer token in the Authorization header:

curl -X POST https://api.vorynza.cloud/v1/mail/send \
  -H "Authorization: Bearer vnz_mail_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{ ... }'

Revoking a key

Revoked keys immediately stop working. You can create new keys at any time.


Need help? Contact support.

Sending email

Send transactional email through the Vorynza Mail REST API. Request fields, response format, and message statuses.

DNS guide

Manage DNS zones and records through Vorynza DNS. Full hosting with PowerDNS, proxy support, and security gateway.

On this page

Creating an API keyScopesKey formatUsing API keysRevoking a key