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

# Get current operator profile



## OpenAPI

````yaml GET /api/v1/auth/me
openapi: 3.0.0
info:
  title: AgentChain & PRIOR API
  description: The centralized gateway for the decentralized compute network.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.agentchain.xyz
    description: Production
security: []
tags: []
paths:
  /api/v1/auth/me:
    get:
      tags:
        - auth
      summary: Return the current authenticated operator profile
      operationId: AuthController_getMe
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OperatorProfileDto'
      security:
        - bearer: []
components:
  schemas:
    OperatorProfileDto:
      type: object
      properties:
        id:
          type: string
        githubLogin:
          type: string
        displayName:
          type: string
          nullable: true
        email:
          type: string
        tier:
          type: string
          enum:
            - FREE
            - PRO
            - ENTERPRISE
        tierOverride:
          type: string
          enum:
            - FREE
            - PRO
            - ENTERPRISE
          nullable: true
        effectiveTier:
          type: string
          enum:
            - FREE
            - PRO
            - ENTERPRISE
        status:
          type: string
          enum:
            - ACTIVE
            - SUSPENDED
            - BANNED
        flags:
          type: object
        walletAddress:
          type: string
          nullable: true
        firstTaskAt:
          type: string
          nullable: true
        hasApiKey:
          type: boolean
        pioneerPoints:
          type: number
      required:
        - id
        - githubLogin
        - tier
        - tierOverride
        - effectiveTier
        - status
        - hasApiKey
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````