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

# Get Profile

> Return current user's profile.



## OpenAPI

````yaml /openapi.json get /v1/users/profile
openapi: 3.1.0
info:
  title: AgentPowers API
  description: Paid marketplace for Claude Code skills and agents
  version: 0.1.0
servers:
  - url: https://api.agentpowers.ai
    description: Production
security: []
paths:
  /v1/users/profile:
    get:
      tags:
        - users
      summary: Get Profile
      description: Return current user's profile.
      operationId: get_profile_v1_users_profile_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    ProfileResponse:
      properties:
        id:
          type: string
          title: Id
        display_name_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name Slug
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        email:
          type: string
          title: Email
        github_username:
          anyOf:
            - type: string
            - type: 'null'
          title: Github Username
        joined_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Joined At
        bio:
          anyOf:
            - type: string
            - type: 'null'
          title: Bio
        website_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Website Url
        github_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Github Url
        linkedin_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedin Url
        twitter_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Twitter Url
        avatar_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Avatar Url
        account_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Account Status
        deletion_scheduled_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Deletion Scheduled At
      type: object
      required:
        - id
        - email
      title: ProfileResponse
      description: Response body for profile endpoints.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Provide a Clerk JWT or a long-lived CLI token (prefix `ap_cli_`).  Pass
        as `Authorization: Bearer <token>`.

````