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

# Verify token

> Returns the workspace and token associated with the API token used to authenticate the request. Use this endpoint to confirm a token works before wiring up an integration.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/me
openapi: 3.1.0
info:
  title: Adraa Inbox API
  description: >-
    Public REST API for Adraa Inbox. Assign agents to conversations and send
    messages from your own systems. Authenticate every request with a workspace
    API token.
  version: 1.0.0
  contact:
    email: support@adraa.ai
servers:
  - url: https://api.inbox.adraa.ai
    description: Production
security:
  - apiToken: []
paths:
  /api/v1/me:
    get:
      summary: Verify token
      description: >-
        Returns the workspace and token associated with the API token used to
        authenticate the request. Use this endpoint to confirm a token works
        before wiring up an integration.
      operationId: getMe
      responses:
        '200':
          description: Token is valid
          content:
            application/json:
              schema:
                type: object
                properties:
                  company:
                    type: object
                    description: The workspace this token belongs to.
                    properties:
                      id:
                        type: string
                        description: Workspace ID.
                        example: cmbxgvq1e0000ph01a2b3c4d5
                      name:
                        type: string
                        description: Workspace name.
                        example: acme
                  token:
                    type: object
                    description: The API token used for this request.
                    properties:
                      id:
                        type: string
                        description: Token ID.
                        example: cmbxh1k3a0001ph01e6f7g8h9
                      name:
                        type: string
                        description: Token name set when it was created.
                        example: CRM integration
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Missing, invalid, or revoked API token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: INVALID_API_TOKEN
              message: Invalid or revoked API token
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Machine-readable error code.
            message:
              type: string
              description: Human-readable explanation.
            details:
              description: Field-level details for validation errors.
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
  securitySchemes:
    apiToken:
      type: http
      scheme: bearer
      description: >-
        Workspace API token created in Settings → API. Tokens start with
        `adraa_`.

````