Contents:
Access to the developer API is open to everyone with a delivr.to account, and is fully-featured. Anything you can do in the UI, you can achieve with the API.
What you can do
- Run campaigns and retrieve results
- Upload custom payloads
- Browse and download from the payload catalogue
📚 Full documentation: API Reference
Authentication
delivr.to uses API keys for authentication.
Generate an API key
- Visit the API Keys section of Settings
- Click Create and optionally set an expiry time (default: 180 days, max: 365)
- Copy your API key immediately — it cannot be retrieved later
Using your API key
Include this header in your requests:
Authorization: YOUR_API_KEY
Example: Get your user account info:
curl --request GET \
--url https://api.delivr.to/me \
--header 'Authorization: YOUR_API_KEY' \
--header 'accept: application/json'
Revoking Keys
- Visit the API Keys section of Settings
- Click Delete and confirm
- The key is immediately invalidated and can no longer be used