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

# Get authenticated identity

> Returns the calling key's identity, granted scopes, and the workspace's Linear team selection. Any authenticated key may call this.



## OpenAPI

````yaml openapi-v2.json get /me
openapi: 3.0.3
info:
  title: Productlane API
  description: Productlane API v2.
  version: 2.0.0
servers:
  - url: https://productlane.com/api/v2
security: []
paths:
  /me:
    get:
      tags:
        - meta
      summary: Get authenticated identity
      description: >-
        Returns the calling key's identity, granted scopes, and the workspace's
        Linear team selection. Any authenticated key may call this.
      operationId: me-get
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  workspace_id:
                    type: string
                  api_key_id:
                    type: string
                  scopes:
                    type: array
                    items:
                      type: string
                  linear_team_ids:
                    type: array
                    items:
                      type: string
                  default_linear_team_id:
                    type: string
                    nullable: true
                required:
                  - workspace_id
                  - api_key_id
                  - scopes
                  - linear_team_ids
                  - default_linear_team_id
                additionalProperties: false
        default:
          $ref: '#/components/responses/error'
      security:
        - Authorization: []
components:
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  type: object
                  properties:
                    message:
                      type: string
                  required:
                    - message
                  additionalProperties: false
            required:
              - message
              - code
            additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer

````