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

# Profile

> Retrieve user data, organizations, notification_count, latest access logs and access tokens



## OpenAPI

````yaml get /api/v2/profile
openapi: 3.0.0
info:
  title: AquilaX AI API Docs
  version: '2.0'
  description: >
    Welcome to the API documentation for AquilaX. Integrate AquilaX for advanced
    data processing and analytics in your applications. Key features include
    seamless data ingestion, powerful processing capabilities, analytics tools,
    real-time updates, and robust security measures. Get started with API keys,
    explore endpoints, understand formats, and implement error
    handling.Authorization is required for all end-points, excluding the one
    under Public Section. To authenticate, a Personal Access Token `PAT` must be
    included in the request header with the name `X-AX-KEY`. Happy coding!
servers:
  - url: https://aquilax.ai
    description: Cloud Instance
security:
  - ApiKeyAuth: []
tags:
  - name: Health
    description: Endpoints for metrics and health check
  - name: Profile
    description: Endpoints for managing user profiles
  - name: Public Scan
    description: Endpoints for scanning a public git repo
  - name: Admin
    description: Endpoints for AquilaX Worker
paths:
  /api/v2/profile:
    get:
      tags:
        - Profile
      summary: Profile
      description: >-
        Retrieve user data, organizations, notification_count, latest access
        logs and access tokens
      responses:
        '200':
          description: User data retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserData'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    UserData:
      type: object
      description: Schema representing user data.
      properties:
        notification_count:
          type: integer
          example: 0
          description: User Email
        user_id:
          type: string
          description: Unique User ID
          example: xxxxx-82f9-4c65-b1cd-xxxxxxxxx
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-AX-KEY

````