> ## 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.

# Register

> Register a new wallet partner with signature verification.

Wallet partner registration is invite-only — the address must have an
approved application (status='approved' in `applications` collection).
Apply via /v1/applications/wallet first.



## OpenAPI

````yaml https://api.yieldo.xyz/openapi.json post /v1/partners/register
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/register:
    post:
      tags:
        - partners
      summary: Register
      description: |-
        Register a new wallet partner with signature verification.

        Wallet partner registration is invite-only — the address must have an
        approved application (status='approved' in `applications` collection).
        Apply via /v1/applications/wallet first.
      operationId: register_v1_partners_register_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PartnerRegisterRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerRegisterResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PartnerRegisterRequest:
      properties:
        address:
          type: string
          title: Address
        signature:
          type: string
          title: Signature
        name:
          type: string
          title: Name
          default: ''
        website:
          type: string
          title: Website
          default: ''
        contact_email:
          type: string
          title: Contact Email
          default: ''
        description:
          type: string
          title: Description
          default: ''
        nonce:
          anyOf:
            - type: string
            - type: 'null'
          title: Nonce
      type: object
      required:
        - address
        - signature
      title: PartnerRegisterRequest
    PartnerRegisterResponse:
      properties:
        address:
          type: string
          title: Address
        name:
          type: string
          title: Name
        api_key:
          type: string
          title: Api Key
        api_secret:
          type: string
          title: Api Secret
        api_key_prefix:
          type: string
          title: Api Key Prefix
        created_at:
          type: string
          title: Created At
        session_token:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Token
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Expires At
      type: object
      required:
        - address
        - name
        - api_key
        - api_secret
        - api_key_prefix
        - created_at
      title: PartnerRegisterResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````