---
title: "BDCValuationsResponse"
url: "https://console.9fin.com/apis/bdc/versions/6a9605ac-8bcf-48e9-98dc-483d291112fd/schemas/BDCValuationsResponse"
---

> Full API specification: https://console.9fin.com/apis/bdc/versions/6a9605ac-8bcf-48e9-98dc-483d291112fd.md

# BDCValuationsResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9Fin BDCs API
  version: 0.1.6
servers:
  - description: Production environment
    url: https://api.9fin.com
components:
  schemas:
    BDCBorrower:
      properties:
        avg_fvr:
          anyOf:
            - type: number
            - type: "null"
          title: Avg Fvr
        avg_fvr_weighted:
          anyOf:
            - type: number
            - type: "null"
          title: Avg Fvr Weighted
        bdcs_holding:
          title: Bdcs Holding
          type: integer
        end_quarter:
          anyOf:
            - format: date
              type: string
            - type: "null"
          title: End Quarter
        fvr_delta:
          anyOf:
            - type: number
            - type: "null"
          title: Fvr Delta
        fvr_delta_weighted:
          anyOf:
            - type: number
            - type: "null"
          title: Fvr Delta Weighted
        fvr_standard_deviation:
          anyOf:
            - type: number
            - type: "null"
          title: Fvr Standard Deviation
        holding_quarter:
          anyOf:
            - type: string
            - type: "null"
          title: Holding Quarter
        inaccurate:
          anyOf:
            - type: boolean
            - type: "null"
          title: Inaccurate
        industries:
          anyOf:
            - items:
                type: string
              type: array
            - type: "null"
          title: Industries
        is_european:
          anyOf:
            - type: boolean
            - type: "null"
          title: Is European
        is_new_borrower:
          anyOf:
            - type: boolean
            - type: "null"
          title: Is New Borrower
        is_pik:
          anyOf:
            - type: boolean
            - type: "null"
          title: Is Pik
        issuer_name:
          title: Issuer Name
          type: string
        lower_quarter:
          anyOf:
            - type: number
            - type: "null"
          title: Lower Quarter
        managers_holding:
          title: Managers Holding
          type: integer
        max_fvr:
          anyOf:
            - type: number
            - type: "null"
          title: Max Fvr
        min_fvr:
          anyOf:
            - type: number
            - type: "null"
          title: Min Fvr
        next_maturing:
          anyOf:
            - format: date
              type: string
            - type: "null"
          title: Next Maturing
        non_accrual:
          anyOf:
            - type: boolean
            - type: "null"
          title: Non Accrual
        total_fair_value:
          anyOf:
            - type: number
            - type: "null"
          title: Total Fair Value
        total_fair_value_delta:
          anyOf:
            - type: number
            - type: "null"
          title: Total Fair Value Delta
        upper_quarter:
          anyOf:
            - type: number
            - type: "null"
          title: Upper Quarter
      required:
        - issuer_name
        - bdcs_holding
        - managers_holding
      title: BDCBorrower
      type: object
    BDCValuationsResponse:
      properties:
        items:
          description: Instruments the fit the provided filter criteria.
          items:
            $ref: "#/components/schemas/BDCBorrower"
          title: Items
          type: array
        next_cursor:
          anyOf:
            - type: string
            - type: "null"
          description: Cursor to pass in the next request to fetch the next page of
            instruments
          title: Next Cursor
        total_count:
          description: Total count of all items the match the provided filter criteria.
          title: Total Count
          type: integer
      required:
        - items
        - next_cursor
        - total_count
      title: BDCValuationsResponse
      type: object
```
