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

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

# AdvisorFeeResponse

Cursor-paginated list of advisor fee filings.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin Distressed API
  version: 0.1.11
components:
  schemas:
    AdvisorFeeListItem:
      description: Advisor fee filing for one period.
      properties:
        advisor:
          $ref: "#/components/schemas/AdvisorFeeAdvisor"
        company:
          $ref: "#/components/schemas/Entity"
        end_fee_period:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: Billing period end date.
          title: End Fee Period
        expenses_approved:
          anyOf:
            - type: number
            - type: "null"
          description: Expenses approved.
          title: Expenses Approved
        expenses_paid:
          anyOf:
            - type: number
            - type: "null"
          description: Expenses paid.
          title: Expenses Paid
        expenses_requested:
          anyOf:
            - type: number
            - type: "null"
          description: Expenses requested.
          title: Expenses Requested
        fee_approved:
          anyOf:
            - type: number
            - type: "null"
          description: Fees approved.
          title: Fee Approved
        fee_paid:
          anyOf:
            - type: number
            - type: "null"
          description: Fees paid.
          title: Fee Paid
        fee_requested:
          anyOf:
            - type: number
            - type: "null"
          description: Fees requested.
          title: Fee Requested
        fee_type:
          description: Fee filing type. E.g., `Financial`, `Monthly`, `Hourly`.
          title: Fee Type
          type: string
        hours_professional:
          anyOf:
            - type: number
            - type: "null"
          description: Hours worked in the period.
          title: Hours Professional
        party_represented:
          description: Party the advisor acted for.
          title: Party Represented
          type: string
        process_initiation_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: Linked restructuring process start date.
          title: Process Initiation Date
        rate_professional:
          anyOf:
            - type: number
            - type: "null"
          description: Average hourly rate.
          title: Rate Professional
        restructuring_uuid:
          description: Parent restructuring identifier.
          format: uuid
          title: Restructuring Uuid
          type: string
        start_fee_period:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: Billing period start date.
          title: Start Fee Period
        status:
          description: Linked restructuring process status. E.g., `Final`, `Interim`,
            `Ongoing`, etc.
          title: Status
          type: string
        total_compensation:
          anyOf:
            - type: number
            - type: "null"
          description: Running total of fees approved for this advisor on this event.
          title: Total Compensation
        total_funded_debt_obligations:
          anyOf:
            - type: number
            - type: "null"
          description: Pre-event gross debt of the linked restructuring.
          title: Total Funded Debt Obligations
        uuid:
          description: Unique fee item identifier.
          format: uuid
          title: Uuid
          type: string
        venue:
          anyOf:
            - type: string
            - type: "null"
          description: Venue.
          title: Venue
      required:
        - uuid
        - company
        - restructuring_uuid
        - venue
        - advisor
        - party_represented
        - fee_type
        - status
        - start_fee_period
        - end_fee_period
        - hours_professional
        - fee_requested
        - expenses_requested
        - fee_approved
        - expenses_approved
        - fee_paid
        - expenses_paid
        - rate_professional
        - total_compensation
        - total_funded_debt_obligations
        - process_initiation_date
      title: AdvisorFeeListItem
      type: object
    AdvisorFeeAdvisor:
      description: Advisor on this fee filing.
      properties:
        legal_firm:
          description: Whether the advisor is a legal firm.
          title: Legal Firm
          type: boolean
        name:
          description: Advisor name.
          title: Name
          type: string
        role:
          description: Advisor roles. E.g., `Financial`, `Legal`, `Operational`.
          items:
            type: string
          title: Role
          type: array
      required:
        - name
        - role
        - legal_firm
      title: AdvisorFeeAdvisor
      type: object
    Entity:
      description: A 9fin entity (e.g. a company), identified by its `nf_id`.
      properties:
        name:
          description: Company name.
          title: Name
          type: string
        nf_id:
          description: Permanent opaque organisation id (`nf_ent_<hex>`).
          title: Nf Id
          type: string
      required:
        - nf_id
        - name
      title: Entity
      type: object
    AdvisorFeeResponse:
      description: Cursor-paginated list of advisor fee filings.
      properties:
        items:
          description: Fee items that match the provided filter criteria.
          items:
            $ref: "#/components/schemas/AdvisorFeeListItem"
          title: Items
          type: array
        next_cursor:
          anyOf:
            - type: string
            - type: "null"
          description: Cursor to pass in the next request to fetch the next page.
          title: Next Cursor
      required:
        - items
        - next_cursor
      title: AdvisorFeeResponse
      type: object
```
