openapi: 3.1.0 info: title: Bluejay Agents Get All Simulations API description: Bluejay API version: 0.1.0 servers: - url: https://api.getbluejay.ai description: Production server security: - apiKeyAuth: [] tags: - name: Get All Simulations paths: /v1/get-all-simulations: get: summary: Get All Simulations description: Get all simulations for a user. operationId: get_all_simulations_v1_get_all_simulations_get security: - HTTPBearer: [] parameters: - name: X-API-Key in: header required: true schema: type: string description: API key required to authenticate requests. responses: '200': description: Successful Response content: application/json: schema: $ref: '#/components/schemas/GetSimulationsResponse' '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' tags: - Get All Simulations components: schemas: ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type type: object required: - loc - msg - type title: ValidationError SimulationRes: properties: id: type: integer title: Id description: ID of the simulation name: type: string title: Name description: Name of the simulation agent_id: anyOf: - type: integer - type: 'null' title: Agent Id description: ID of the agent associated with the simulation created_at: type: string format: date-time title: Created At description: When the simulation was created settings: anyOf: - additionalProperties: true type: object - type: 'null' title: Settings description: Settings of the simulation type: object required: - id - name - created_at title: SimulationRes GetSimulationsResponse: properties: simulations: items: $ref: '#/components/schemas/SimulationRes' type: array title: Simulations description: List of simulations type: object title: GetSimulationsResponse HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError securitySchemes: apiKeyAuth: type: apiKey in: header name: X-API-Key description: API key required to authenticate requests.