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

# Get my role

> Get information about my role like client name, role name... (using the provided api key)



## OpenAPI

````yaml https://api.wesog.com/openapi.json get /me
openapi: 3.1.0
info:
  title: Wesog API
  description: Wesog AI services for media providers
  version: 1.0.0
servers:
  - url: https://api.wesog.com
    description: Production server
  - url: https://v2.api.wesog.com
    description: Production server (v2)
security: []
paths:
  /me:
    get:
      tags:
        - Roles
      summary: Get my role
      description: >-
        Get information about my role like client name, role name... (using the
        provided api key)
      operationId: read_me_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: API-Key

````