---
title: "DipFee"
url: "https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830/schemas/DipFee"
---

> Full API specification: https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830.md

# DipFee

Fees charged on the facility.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin Distressed API
  version: 0.1.11
components:
  schemas:
    DipFee:
      description: Fees charged on the facility.
      properties:
        fee_amount:
          anyOf:
            - type: number
            - type: "null"
          description: Amount in USD millions.
          title: Fee Amount
        fee_percentage:
          anyOf:
            - type: number
            - type: "null"
          description: Value as a percentage.
          title: Fee Percentage
        fee_type:
          description: Fee type. E.g., Closing Fee, Fronting Fee, Exit Fee, etc.
          title: Fee Type
          type: string
        initial_fee_amount:
          anyOf:
            - type: number
            - type: "null"
          description: Amount in USD millions.
          title: Initial Fee Amount
      required:
        - fee_type
      title: DipFee
      type: object
```
