Getting Started
Welcome to the myMetra API. This guide will help you get started with integrating email-to-webhook functionality into your application.
01
Create an API Key
Generate an API key from your dashboard to authenticate API requests.
02
Create an Endpoint
Set up an endpoint to receive a unique email address and webhook URL.
03
Configure Transformations
Optionally add transformations to reshape email data before delivery.
04
Receive Webhooks
Emails sent to your address are parsed and delivered to your webhook URL.
Base URL
API Base URL
https://bridge.sauerbase.com/api/v1Quick Example
Create an endpoint
curl -X POST "https://bridge.sauerbase.com/api/v1/endpoints" \
-H "Authorization: Bearer sb_live_xxxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"name": "My First Endpoint",
"webhook_url": "https://your-app.com/webhook"
}'