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

# Retrieve user



## OpenAPI

````yaml GET /v1/users/me
openapi: 3.1.0
info:
  title: TurboFiles API
  version: 0.1.0
  description: |
    TurboFiles is a high-performance file compression service that provides
    efficient compression for various file types through a simple REST API.
  contact:
    name: TurboFiles Support
    url: https://www.turbofiles.io/support
    email: support@turbofiles.io
servers:
  - url: https://api.turbofiles.io/
    description: Production API
security:
  - bearerAuth: []
paths:
  /v1/users/me:
    get:
      summary: Retrieve user
      operationId: v1_user_retrieve
      responses:
        '200':
          description: Retrieved successfully
          content:
            application/vnd.api+json:
              schema:
                type: object
                required:
                  - jsonapi
                  - data
                properties:
                  jsonapi:
                    type: object
                    required:
                      - version
                    properties:
                      version:
                        type: string
                        example: '1.1'
                  data:
                    allOf:
                      - type: object
                        required:
                          - type
                          - id
                          - attributes
                        properties:
                          type:
                            type: string
                            enum:
                              - users
                          id:
                            type: string
                            example: '1'
                          attributes:
                            type: object
                            properties:
                              email:
                                type: string
                                description: The email address of the user.
                              name:
                                type: string
                                description: The name of the user.
                              created_at:
                                type: string
                                format: date-time
                                description: The date and time when the user was created.
                              updated_at:
                                type: string
                                format: date-time
                                description: >-
                                  The date and time when the user was last
                                  updated.
                      - type: object
                        required:
                          - links
                        properties:
                          links:
                            type: object
                            required:
                              - self
                            properties:
                              self:
                                type: string
                                format: uri
                  links:
                    type: object
                    properties:
                      self:
                        type: string
                        format: uri
                        description: Link to the current page of results
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >
        Authentication token must be provided in the Authorization header using
        the Bearer scheme.

        Example: Authorization: Bearer your-api-key-or-token

````