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

# Get yield breakdown for the account type



## OpenAPI

````yaml /openapi/extern-svr.json get /extern/svr/{accountTypeId}/yield
openapi: 3.1.0
info:
  title: Blend business-api — extern svr
  version: 1.0.0
  description: >-
    Server integration surface. Auth: X-API-Key header. The account is explicit
    in the URL path.
servers:
  - url: https://{host}
    variables:
      host:
        default: api.portal.blend.money
security: []
paths:
  /extern/svr/{accountTypeId}/yield:
    get:
      tags:
        - svr
      summary: Get yield breakdown for the account type
      operationId: svr_getYield
      parameters:
        - name: accountTypeId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    const: success
                  data:
                    $ref: '#/components/schemas/YieldResponse'
                required:
                  - status
                  - data
                additionalProperties: false
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
        '503':
          $ref: '#/components/responses/Error'
      security:
        - ApiKey: []
components:
  schemas:
    YieldResponse:
      type: object
      properties:
        accountTypeId:
          type: string
        yieldBreakdown:
          type: array
          items:
            type: object
            properties:
              chainId:
                type: number
              vaultAddress:
                $ref: '#/components/schemas/Address'
              breakdown:
                type: object
                properties:
                  base:
                    type: number
                  positions:
                    type: array
                    items:
                      type: number
                required:
                  - base
                  - positions
                additionalProperties: false
              summary:
                type: object
                properties:
                  theoreticalOverall:
                    type: number
                  theoreticalBoosted:
                    type: number
                  pctInVault:
                    type: number
                  pctDeployed:
                    type: number
                required:
                  - theoreticalOverall
                  - theoreticalBoosted
                  - pctInVault
                  - pctDeployed
                additionalProperties: false
              heldAssets:
                type: array
                items:
                  $ref: '#/components/schemas/HeldAsset'
            required:
              - chainId
              - vaultAddress
              - breakdown
              - summary
              - heldAssets
            additionalProperties: false
      required:
        - accountTypeId
        - yieldBreakdown
      additionalProperties: false
    Address:
      type: string
      pattern: ^0x[a-fA-F0-9]{40}$
      description: EIP-55 checksummed EVM address
      examples:
        - '0x1234567890AbcdEF1234567890aBcdef12345678'
    HeldAsset:
      type: object
      properties:
        address:
          $ref: '#/components/schemas/Address'
        symbol:
          type: string
        chainId:
          type: number
      required:
        - address
        - symbol
        - chainId
      additionalProperties: false
  responses:
    Error:
      description: Error
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                const: error
              message:
                type: string
            required:
              - status
              - message
            additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: Server-to-server API key

````