openapi: 3.0.2 info: title: Allium Explorer ping API version: 0.1.0 servers: - url: https://api.allium.so tags: - name: ping paths: /ping: get: tags: - ping summary: Ping operationId: ping_ping_get responses: '200': description: Successful Response content: application/json: schema: {} '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' components: schemas: HTTPValidationError: title: HTTPValidationError type: object properties: detail: title: Detail type: array items: $ref: '#/components/schemas/ValidationError' ValidationError: title: ValidationError required: - loc - msg - type type: object properties: loc: title: Location type: array items: anyOf: - type: string - type: integer msg: title: Message type: string type: title: Error Type type: string securitySchemes: APIKeyBearer: type: apiKey in: header name: X-API-KEY