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

# Get Profile



## OpenAPI

````yaml https://api.yieldo.xyz/openapi.json get /v1/creators/me
openapi: 3.1.0
info:
  title: Yieldo API
  description: Cross-chain deposit aggregator for ERC-4626 and custom yield vaults
  version: 1.0.0
servers:
  - url: https://api.yieldo.xyz
    description: Production
security: []
paths:
  /v1/creators/me:
    get:
      tags:
        - creators
        - creators
      summary: Get Profile
      operationId: get_profile_v1_creators_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KolProfile'
components:
  schemas:
    KolProfile:
      properties:
        address:
          type: string
          title: Address
        handle:
          type: string
          title: Handle
        name:
          type: string
          title: Name
        bio:
          type: string
          title: Bio
          default: ''
        twitter:
          type: string
          title: Twitter
          default: ''
        fee_enabled:
          type: boolean
          title: Fee Enabled
          default: true
        fee_collector_address:
          type: string
          title: Fee Collector Address
          default: ''
        enrolled_vaults:
          items:
            type: string
          type: array
          title: Enrolled Vaults
          default: []
        created_at:
          type: string
          title: Created At
          default: ''
        status:
          type: string
          title: Status
          default: active
      type: object
      required:
        - address
        - handle
        - name
      title: KolProfile

````