WaxForward LogoWaxForward

API Reference

All WaxForward API endpoints, request/response schemas, and code examples.

WaxForward API Reference

Our HTTP/REST API allows you to programmatically manage domains, aliases, and view statistics.


1. Authentication

Include your API key as a Bearer token in the Authorization header for all requests.

Example:

Authorization: Bearer <YOUR_API_KEY>

2. Sample Endpoints

Create Alias

POST /v1/aliases
Content-Type: application/json

Body:
{
  "email":      "contact@yourdomain.com",
  "recipients": ["you@gmail.com"]
}

List Aliases

GET /v1/aliases

Delete Alias

DELETE /v1/aliases/{aliasId}

Add Domain

POST /v1/domains
Content-Type: application/json

Body:
{
  "domain": "yourdomain.com"
}

List Domains

GET /v1/domains

3. Example (cURL)

curl -X POST https://api.waxforward.com/v1/aliases   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{ "email":      "support@yourdomain.com", 
        "recipients": ["you@gmail.com"] }'

On this page