FAQ
Technical FAQ
Answers to common technical questions about integrating and operating Bruxus.
Frequently Asked Questions
What authentication method does the API use?
The Bruxus API uses Bearer token authentication. Include your API key in the Authorization header of every request.
How do I handle rate limiting?
API requests are rate-limited to 1000 requests per minute per key. When you exceed the limit, the API returns a 429 status code. Use exponential backoff in your retry logic.
What is the maximum payload size for webhooks?
Webhook payloads are limited to 256 KB. For larger payloads, consider using the event payload URL to fetch additional data asynchronously.
Can I use Bruxus with serverless functions?
Yes. Our SDKs and API are fully compatible with serverless environments like AWS Lambda, Vercel Functions, and Cloudflare Workers.
How are webhook retries handled?
Failed webhook deliveries are retried up to 5 times with exponential backoff (1m, 5m, 15m, 30m, 60m). After all retries fail, the event is marked as failed in the dashboard.
