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

# Get Current User

> Retrieve the user that owns the API key, including personal settings (timezone, formats, API key).



## OpenAPI

````yaml /openapi.json get /users/me
openapi: 3.1.1
info:
  title: Everhour API
  version: 1.0.0
  license:
    name: Proprietary
    identifier: LicenseRef-Proprietary
servers:
  - url: https://api.everhour.com
security:
  - ApiKeyAuth: []
tags:
  - name: Clients
  - name: Custom Fields
  - name: Expenses
  - name: Invoices
  - name: Projects
  - name: Reports
  - name: Schedule
  - name: Tasks
  - name: Time Off
  - name: Time Records
  - name: Timecards
  - name: Timers
  - name: Timesheets
  - name: Users
  - name: Webhooks
paths:
  /users/me:
    get:
      tags:
        - Users
      summary: Get Current User
      description: >-
        Retrieve the user that owns the API key, including personal settings
        (timezone, formats, API key).
      operationId: getCurrentUser
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CurrentUser'
        '401':
          description: Unauthorized
components:
  schemas:
    CurrentUser:
      allOf:
        - $ref: '#/components/schemas/User'
        - type: object
          description: Additional fields returned only for the authenticated user.
          properties:
            timezone:
              type: number
              description: UTC offset in hours (e.g. -5, 5.5).
            apiKey:
              type: string
            type:
              type: string
              enum:
                - employee
                - contractor
            createdAt:
              type: string
              description: 'Format: Y-m-d H:i:s'
            dateFormat:
              type: integer
            timeFormat:
              type: integer
            timeRounding:
              type: integer
            country:
              type: string
              description: ISO 3166-1 alpha-2 country code.
            team:
              type: object
              description: The user's team.
            rate:
              type: integer
              description: Hourly bill rate in cents (admins only).
            cost:
              type: integer
              description: Hourly cost in cents (requires cost permissions).
    User:
      type: object
      properties:
        id:
          type: number
          example: 1304
        name:
          type: string
          example: User Name
        headline:
          type:
            - string
            - 'null'
          example: CEO
        avatarUrl:
          type:
            - string
            - 'null'
        role:
          type: string
          enum:
            - admin
            - supervisor
            - member
            - member_limited
          example: admin
        status:
          type: string
          enum:
            - active
            - invited
            - pending
            - removed
          example: active
        phone:
          type: string
          nullable: true
        capacity:
          type: integer
          nullable: true
          description: Weekly capacity in seconds.
        avatarUrlLarge:
          type: string
          nullable: true
      required:
        - id
        - name
        - role
        - status
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````