Authorization header as a Bearer token. Requests without a valid key are rejected with a 401 error.
Get your API key
API keys are generated from the Waply dashboard:1
Open Settings
In the Waply dashboard, click Settings in the left sidebar.
2
Go to API Keys
Select API Keys from the Settings menu.
3
Create a new key
Click New API Key, give it a name (for example, “Production backend”), and click Create.
4
Copy your key
Copy the key immediately — it is only shown once. Store it in a secure secrets manager or environment variable.
Authenticate a request
Pass your API key in theAuthorization header using the Bearer scheme:
YOUR_API_KEY with the key you copied from the dashboard. We recommend storing it as an environment variable:
Authentication errors
401 — Invalid API key
A401 response means the API key in your Authorization header is missing, malformed, or has been revoked.
403 — Plan does not include API access
A403 response means your Waply account is on the Starter plan, which does not include API access.
Rotating API keys
You can generate multiple API keys for different environments or services. To rotate a key:- Create a new API key from Settings > API Keys.
- Update your application to use the new key.
- Delete the old key from the dashboard once traffic has moved over.