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

# Inspect API Key

> Returns the organization and metadata associated with the API key used in the request.



## OpenAPI

````yaml GET /v1/auth/me
openapi: 3.1.0
info:
  title: Voxfra Management API
  description: >
    Tenant-facing REST API for integrating with Voxfra's voice intelligence
    infrastructure.

    Use this API to read call data, manage clients, and build partner
    dashboards.


    ## Authentication


    All endpoints except `GET /health` require an API key passed in the
    `X-API-Key` header.

    API keys are scoped to a single organization — all responses are
    automatically filtered to your org.


    Keys are issued by your Voxfra account manager or via the Voxfra admin
    console.
  version: 1.0.0
  contact:
    name: Voxfra Support
    email: support@voxfra.com
  license:
    name: Proprietary
    url: https://voxfra.com/terms
servers:
  - url: https://mgmt-api.voxfra.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Health
    description: System status
  - name: Auth
    description: Verify and inspect the current API key
  - name: Clients
    description: >-
      Read and provision clients (dealerships, clinics, etc.) within your
      organization
  - name: Calls
    description: Access call records ingested through voxfra
  - name: Customers
    description: >-
      Access tenant-scoped customer records deduplicated within organization and
      client boundaries
paths:
  /v1/auth/me:
    get:
      tags:
        - Auth
      summary: Inspect current API key
      description: >-
        Returns the organization and metadata associated with the API key used
        in the request.
      operationId: getAuthMe
      responses:
        '200':
          description: API key is valid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthMeResponse'
              example:
                organization_id: 00000000-0000-0000-0000-000000000001
                api_key_id: f014d466-1959-4d0d-be84-d64b5690ab7b
                key_name: DealerMate Sandbox
                environment: production
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    AuthMeResponse:
      type: object
      properties:
        organization_id:
          type: string
          format: uuid
        api_key_id:
          type: string
          format: uuid
        key_name:
          type: string
          example: DealerMate Sandbox
        environment:
          type: string
          enum:
            - production
            - sandbox
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: Unauthorized
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        Your Voxfra management API key. Passed as a request header.

        Format: `vox_mgmt_<random>`

````