> ## Documentation Index
> Fetch the complete documentation index at: https://whitelabelled-staking-docs.adamik.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Open API Specification

> Provides the Open API specification of the Adamik API



## OpenAPI

````yaml openapi.json get /api
openapi: 3.1.0
info:
  title: Adamik
  version: 0.1.0
  description: Adamik API reference
servers:
  - url: https://api.adamik.io
security:
  - ApiKeyAuth: []
paths:
  /api:
    get:
      tags:
        - ''
      summary: Open API Specification
      description: Provides the Open API specification of the Adamik API
      responses:
        '200':
          description: Returns the OpenAPI spec of the Adamik API, in JSON format
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization

````