openapi: 3.1.0 info: title: Bluejay Agents Ping API description: Bluejay API version: 0.1.0 servers: - url: https://api.getbluejay.ai description: Production server security: - apiKeyAuth: [] tags: - name: Ping paths: /v1/ping: get: summary: Pong operationId: pong_v1_ping_get 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. tags: - Ping components: securitySchemes: apiKeyAuth: type: apiKey in: header name: X-API-Key description: API key required to authenticate requests.