The Oquira REST API allows you to integrate queue management into your existing systems. Here's how to get started.
Authentication
All API requests require an API key. Generate one from Settings > API Keys in your dashboard. Include it in the Authorization header as a Bearer token.
bashcurl -X GET https://api.oquira.com/v1/services \ -H 'Authorization: Bearer YOUR_API_KEY'
Rate limits
The API is limited to 100 requests per minute per organization. If you exceed this limit, you'll receive a 429 response. Implement exponential backoff in your integration.