> ## Documentation Index
> Fetch the complete documentation index at: https://boarddocs.pybash.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Get API information



## OpenAPI

````yaml openapi.json get /
openapi: 3.1.0
info:
  title: Bin (Board Modified)
  description: >-
    A minimalist pastebin API modified for Board. Device-based storage with
    authentication.
  contact:
    name: Jordan Doyle
    email: jordan@doyle.la
  license:
    name: WTFPL OR 0BSD
    identifier: WTFPL OR 0BSD
  version: 2.0.2
servers: []
security: []
tags:
  - name: info
    description: API information endpoints
  - name: device
    description: Device management endpoints
  - name: paste
    description: Paste management endpoints
paths:
  /:
    get:
      tags:
        - info
      summary: Get API information
      operationId: index
      responses:
        '200':
          description: API information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiInfo'
components:
  schemas:
    ApiInfo:
      type: object
      required:
        - message
        - endpoints
      properties:
        endpoints:
          type: array
          items:
            $ref: '#/components/schemas/ApiEndpoint'
          description: List of available API endpoints
        message:
          type: string
          description: Welcome message
    ApiEndpoint:
      type: object
      required:
        - method
        - path
        - description
      properties:
        description:
          type: string
          description: Endpoint description
        method:
          type: string
          description: HTTP method
        path:
          type: string
          description: URL path

````