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

# Get current user

> Returns the authenticated user's ID, email, and organization name.



## OpenAPI

````yaml https://api.tickable.io/doc get /whoami
openapi: 3.0.0
info:
  version: 1.0.0
  title: Tickable API
  description: >-
    The Tickable API provides programmatic access to events, orders, tickets,
    and webhooks for your organization.
  contact:
    name: Tickable
    url: https://tickable.nl
servers:
  - url: https://api.tickable.io
    description: Production
security:
  - Bearer: []
tags:
  - name: Events
    description: Manage events
  - name: Tickets
    description: View tickets
  - name: Orders
    description: View orders
  - name: Webhooks
    description: Manage webhook subscriptions
  - name: User
    description: Current user information
  - name: OAuth
    description: OAuth2 authorization and token endpoints
paths:
  /whoami:
    get:
      tags:
        - User
      summary: Get current user
      description: Returns the authenticated user's ID, email, and organization name.
      operationId: whoami
      responses:
        '200':
          description: Authenticated user info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Whoami'
      security:
        - Bearer: []
components:
  schemas:
    Whoami:
      type: object
      properties:
        uid:
          type: string
          format: uuid
          example: a3bb189e-8bf9-3888-9912-ace4e6543002
        email:
          type: string
          example: email@example.com
        organization:
          type: string
          example: Organization
      required:
        - uid
        - email
        - organization
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: >-
        Pass as `Authorization: Bearer {token}`. Accepts either an OAuth2 JWT
        access token or an API key (`tk_live_...`) created from the Tickable
        dashboard.

````