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

# Performs introspection of the provided Bearer JWT token



## OpenAPI

````yaml /openapi/events_api.yaml get /api/v2/auth/introspect
openapi: 3.0.0
info:
  title: Events API
  description: 1Password Events API Specification.
  version: 1.4.1
servers:
  - url: https://events.1password.com
    description: 1Password
  - url: https://events.1password.ca
    description: 1Password CA
  - url: https://events.1password.eu
    description: 1Password EU
  - url: https://events.ent.1password.com
    description: 1Password Enterprise
security: []
paths:
  /api/v2/auth/introspect:
    get:
      tags:
        - auth
      summary: Performs introspection of the provided Bearer JWT token
      operationId: getAuthIntrospectV2
      responses:
        '200':
          $ref: '#/components/responses/IntrospectV2Response'
        '401':
          $ref: '#/components/responses/UnauthorizedErrorResponse'
        '500':
          $ref: '#/components/responses/InternalServerErrorResponse'
        default:
          $ref: '#/components/responses/GenericErrorResponse'
      security:
        - jwtsa: []
components:
  responses:
    IntrospectV2Response:
      description: Introspection v2 object
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/IntrospectionV2'
    UnauthorizedErrorResponse:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    InternalServerErrorResponse:
      description: Internal Server Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    GenericErrorResponse:
      description: Generic error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    IntrospectionV2:
      type: object
      properties:
        uuid:
          type: string
        issued_at:
          $ref: '#/components/schemas/DateTimeRFC3339'
        features:
          type: array
          items:
            type: string
          example:
            - auditevents
            - itemusages
            - signinattempts
        account_uuid:
          type: string
    Error:
      type: object
      properties:
        Error:
          type: object
          properties:
            Message:
              type: string
              description: The error message.
    DateTimeRFC3339:
      type: string
      format: date-time
      example: '2020-06-11T16:32:50-03:00'
  securitySchemes:
    jwtsa:
      type: http
      description: A JWT SA token issued to this service
      scheme: bearer
      bearerFormat: JWT-SA

````