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

# Inspect the calling API key

> Return info about the API key used to authenticate *this* request — its
label, masking, budget and remaining balance. The introspection counterpart
to OpenRouter's ``GET /key``: authenticated BY the key itself (FeatureAuth),
never by a session, and it can only ever see its own row. Key management
(list/create/rotate/delete) lives on the session-only endpoints.



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/user/openapi.json get /user/custom_token/me/
openapi: 3.0.3
info:
  title: User Management
  version: '2.0'
  description: Your project description
servers:
  - url: https://api.edenai.run/v2
security: []
paths:
  /user/custom_token/me/:
    get:
      tags:
        - User Management
      summary: Inspect the calling API key
      description: >-
        Return info about the API key used to authenticate *this* request — its

        label, masking, budget and remaining balance. The introspection
        counterpart

        to OpenRouter's ``GET /key``: authenticated BY the key itself
        (FeatureAuth),

        never by a session, and it can only ever see its own row. Key management

        (list/create/rotate/delete) lives on the session-only endpoints.
      operationId: user_me_retrieve
      responses:
        '200':
          description: No response body
      security:
        - FeatureApiAuth: []
components:
  securitySchemes:
    FeatureApiAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````