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

# Me

> Returns the info about the team that owns the api_key



## OpenAPI

````yaml public-openapi GET /me
openapi: 3.0.1
info:
  title: TrueCall Api Specs
  description: TrueCall public API reference
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.truecall.com
security:
  - bearerAuth: []
paths:
  /me:
    get:
      description: Returns the info about the team that owns the api_key
      responses:
        '200':
          description: Me response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
        '400':
          $ref: '#/components/responses/BadReqResponse'
        '401':
          $ref: '#/components/responses/UnauthorizedResponse'
components:
  schemas:
    MeResponse:
      type: object
      properties:
        status:
          $ref: '#/components/schemas/SuccessStatus'
        data:
          type: object
          properties:
            team:
              $ref: '#/components/schemas/TeamSnippet'
    SuccessStatus:
      type: string
      enum:
        - success
        - error
      example: success
    TeamSnippet:
      type: object
      description: the team that owns this api_key
      properties:
        name:
          type: string
          description: name of team
        owner:
          $ref: '#/components/schemas/TeamOwnerSnippet'
    MissingApiKeySchema:
      required:
        - error
        - message
      type: object
      properties:
        status:
          $ref: '#/components/schemas/ErrorStatus'
        message:
          type: string
          example: Missing api_key
    InvalidApiKeySchema:
      required:
        - error
        - message
      type: object
      properties:
        status:
          $ref: '#/components/schemas/ErrorStatus'
        message:
          type: string
          example: Invalid api_key
    TeamOwnerSnippet:
      type: object
      description: owner of team
      properties:
        first_name:
          type: string
          description: first_name of team owner
        last_name:
          type: string
          description: last_name of team owner
        email:
          type: string
          description: email address of team owner
    ErrorStatus:
      type: string
      enum:
        - error
      example: error
  responses:
    BadReqResponse:
      description: Bad request exception
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MissingApiKeySchema'
    UnauthorizedResponse:
      description: Unauthorized exception
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InvalidApiKeySchema'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````