# ListItemResponsePortfolioPositionResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    PortfolioPositionResponse:
      properties:
        asset_id:
          type: string
          format: uuid
        currency_id:
          type: string
          format: uuid
        balance: &ref_0
          $ref: '#/components/schemas/MoneyResponse'
        available_balance: *ref_0
        invested_amount: *ref_0
        average_buy_price: *ref_0
        currency_balance: *ref_0
        total_return: *ref_0
        total_return_percent:
          type: string
      x-apidog-orders:
        - asset_id
        - currency_id
        - balance
        - available_balance
        - invested_amount
        - average_buy_price
        - currency_balance
        - total_return
        - total_return_percent
      type: object
      x-apidog-folder: ''
    MoneyResponse:
      properties:
        value:
          type: string
        asset_id:
          type: string
          format: uuid
        currency_id:
          type: string
          format: uuid
      x-apidog-orders:
        - value
        - asset_id
        - currency_id
      type: object
      x-apidog-folder: ''
    ListItemResponsePortfolioPositionResponse:
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PortfolioPositionResponse'
      x-apidog-orders:
        - data
      type: object
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```