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

# Get Profile

Retrieves the current user's profile information.


## OpenAPI

````yaml GET /api/v1/me
openapi: 3.1.0
info:
  title: WaveCentric AI LooP API
  description: >-
    Comprehensive API for managing omnichannel logistics, inquiries, tasks, and
    data lake operations.
  version: 1.0.0
servers:
  - url: https://ai-loop.alpeadria.com
    description: Production server
security: []
paths:
  /api/v1/me:
    get:
      tags:
        - User Profile
      summary: Get current user profile
      operationId: get-me
      responses:
        '200':
          description: User profile data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
              examples:
                success:
                  value:
                    email: user@example.com
                    name: John
                    surname: Doe
                    companyName: WaveCentric
                    companyVerified: true
                    permission: admin
                    status: Completed
                    jobTitle: Engineer
        '401':
          description: Unauthorized
      security:
        - bearerAuth: []
components:
  schemas:
    User:
      type: object
      properties:
        _id:
          type: string
        email:
          type: string
        name:
          type: string
        surname:
          type: string
        companyName:
          type: string
        companyVerified:
          type: boolean
        permission:
          type: string
        status:
          type: string
        jobTitle:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````