Authentication
All API requests must be authenticated using an API key. You can generate API keys from your dashboard.
Using API Keys
Include your API key in the request headers:
curl -X GET "https://api.example.com/v1/deeplinks" \
-H "x-api-key: your_api_key_here"
Rate Limiting
API requests are rate limited to prevent abuse. The current limits are: - 1000 requests per minute for standard plans - 5000 requests per minute for enterprise plans
Error Responses
{
"error": "Unauthorized",
"status": 401
}