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

# Inspect the current API token



## OpenAPI

````yaml /docs/users-api.yaml get /token/info
openapi: 3.1.0
info:
  title: Spartan Users API
  version: 1.0.0
  description: >-
    Advanced user administration including profile fields, passwords, balances,
    suspension, IP bans, customer PINs, and sessions. All operations require a
    bearer API token with the documented `x-permission`.
servers:
  - url: https://demo.dezerx.com/api/application
    description: Development
security:
  - bearerAuth: []
tags:
  - name: Users
paths:
  /token/info:
    get:
      summary: Inspect the current API token
      responses:
        '200':
          $ref: '#/components/responses/Success'
components:
  responses:
    Success:
      description: Successful response
      content:
        application/json:
          schema:
            type: object
            required:
              - data
              - meta
            properties:
              data: {}
              message:
                type: string
              meta:
                type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````