Hevn Inc Root API

The Root API from Hevn Inc — 1 operation(s) for root.

OpenAPI Specification

hevn-inc-root-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: HEVN 2FA Root API
  description: Backend API for HEVN mobile neobank
  version: 0.1.2
servers:
- url: https://api.hevn.finance
  description: Production
tags:
- name: Root
paths:
  /:
    get:
      tags:
      - Root
      summary: Root
      description: Root endpoint.
      operationId: root__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      x-default: Bearer <token>
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Alternative HEVN API key header. The CLI defaults to Authorization Bearer unless configured with HEVN_API_KEY_HEADER=X-Api-Key.