> ## 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/partners/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/partners/me:
    get:
      tags:
        - partners
      summary: Get Profile
      operationId: get_profile_v1_partners_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerProfile'
components:
  schemas:
    PartnerProfile:
      properties:
        address:
          type: string
          title: Address
        name:
          type: string
          title: Name
        website:
          type: string
          title: Website
          default: ''
        contact_email:
          type: string
          title: Contact Email
          default: ''
        description:
          type: string
          title: Description
          default: ''
        fee_enabled:
          type: boolean
          title: Fee Enabled
          default: true
        fee_collector_address:
          type: string
          title: Fee Collector Address
          default: ''
        webhook_url:
          type: string
          title: Webhook Url
          default: ''
        enrolled_vaults:
          items:
            type: string
          type: array
          title: Enrolled Vaults
          default: []
        api_key_prefix:
          type: string
          title: Api Key Prefix
          default: ''
        created_at:
          type: string
          title: Created At
          default: ''
        status:
          type: string
          title: Status
          default: active
      type: object
      required:
        - address
        - name
      title: PartnerProfile

````