openapi: 3.1.0 info: title: Bluejay Agents ElevenLabs API description: Bluejay API version: 0.1.0 servers: - url: https://api.getbluejay.ai description: Production server security: - apiKeyAuth: [] tags: - name: ElevenLabs paths: /v1/integrations/ElevenLabs: post: tags: - ElevenLabs summary: Handle Webhook operationId: handle_webhook_v1_integrations_ElevenLabs_post responses: '200': description: Successful Response content: application/json: schema: {} parameters: - name: X-API-Key in: header required: true schema: type: string description: API key required to authenticate requests. components: securitySchemes: apiKeyAuth: type: apiKey in: header name: X-API-Key description: API key required to authenticate requests.