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

# Fetch the user data of the authenticated user

> Fetch the user data of the authenticated user



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json get /v1/self/
openapi: 3.1.0
info:
  title: Arklow
  description: Arklow's API
  version: 0.1.0
servers:
  - url: https://api.arklow.io
    description: Production
  - url: http://localhost:3123
    description: Local development
security:
  - apiKey: []
tags:
  - name: actions
  - name: api_keys
  - name: billing
  - name: config
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: rules
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/self/:
    get:
      tags:
        - users
      summary: Fetch the user data of the authenticated user
      description: Fetch the user data of the authenticated user
      operationId: get_v1_self
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - id
                          - name
                          - email
                          - memberships
                        properties:
                          id:
                            type: string
                            description: User identifier
                          name:
                            type: string
                          deleted_at:
                            type: string
                            format: date-time
                            nullable: true
                          email:
                            type: string
                            description: User email address
                          memberships:
                            type: array
                            items:
                              type: object
                              required:
                                - org_id
                                - permissions
                              properties:
                                org_id:
                                  type: string
                                  description: Organization identifier
                                permissions:
                                  type: array
                                  items:
                                    type: string
                                    description: >-
                                      Permissions assigned to the user in the
                                      organization
                            description: List of organization memberships for the user
                      - type: 'null'
                  errors:
                    anyOf:
                      - type: array
                        items:
                          type: object
                          required:
                            - code
                            - message
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                      - type: 'null'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header

````