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

# Me



## OpenAPI

````yaml cloud-api-reference/openapi.json get /me
openapi: 3.1.0
info:
  title: Webagent API
  description: API to execute automated tasks on browser using different LLM providers.
  version: 0.1.0
servers:
  - url: https://api.webagent.cloud
    description: Webagent API
security: []
paths:
  /me:
    get:
      summary: Me
      operationId: me_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileData'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ProfileData:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
          description: Profile ID
        username:
          anyOf:
            - type: string
            - type: 'null'
          title: Username
          description: Username
        avatar_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Avatar Url
          description: Avatar URL
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
          description: Last update timestamp
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
          description: Creation timestamp
        free_prompts:
          anyOf:
            - type: integer
            - type: 'null'
          title: Free Prompts
          description: Available free prompts
        credits:
          anyOf:
            - type: integer
            - type: 'null'
          title: Credits
          description: Credits
      type: object
      title: ProfileData
      description: Represents the profile
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````