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

# API Version

> Retrieve the current version of the API. This endpoint serves as a health check to ensure the API is operational and can be used to verify the availability of new API endpoints based on the version number. It returns a JSON object containing the version string, which can be useful for debugging and ensuring compatibility with client applications.



## OpenAPI

````yaml get /v1/version
openapi: 3.1.0
info:
  title: Wallet API
  version: 2.72.0
servers:
  - url: https://dev.api.mufi.app/
    description: Staging
security: []
paths:
  /v1/version:
    get:
      tags:
        - version
      summary: API Version
      description: >-
        Retrieve the current version of the API. This endpoint serves as a
        health check to ensure the API is operational and can be used to verify
        the availability of new API endpoints based on the version number. It
        returns a JSON object containing the version string, which can be useful
        for debugging and ensuring compatibility with client applications.
      responses:
        '200':
          description: The current version of the API as a JSON object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VersionResponse'
              example:
                version: 2.72.0
components:
  schemas:
    VersionResponse:
      type: object
      properties:
        version:
          type: string
      required:
        - version

````