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

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

# RestructuringResponse

Cursor-paginated list of restructuring events.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin Distressed API
  version: 0.1.11
components:
  schemas:
    Restructuring:
      description: Restructuring or liability-management event.
      properties:
        advisors:
          description: Advisors on the event.
          items:
            $ref: "#/components/schemas/Advisor"
          title: Advisors
          type: array
        company:
          $ref: "#/components/schemas/Entity"
        created_at:
          description: Timestamp when the event was first recorded (ISO).
          format: date-time
          title: Created At
          type: string
        creditors:
          description: Creditors on the event.
          items:
            $ref: "#/components/schemas/Creditor"
          title: Creditors
          type: array
        currency:
          anyOf:
            - type: string
            - type: "null"
          description: Currency code of pre- and post-event gross debt.
          title: Currency
        industry:
          $ref: "#/components/schemas/Industry"
        jurisdictions:
          description: Jurisdictions involved. E.g., `English Scheme`, `Chapter 15`
          items:
            type: string
          title: Jurisdictions
          type: array
        keywords:
          description: Event keywords. E.g., `New Money`, `Amend and Extend`
          items:
            type: string
          title: Keywords
          type: array
        post_gross_debt:
          anyOf:
            - type: number
            - type: "null"
          description: Gross debt after the event.
          title: Post Gross Debt
        pre_gross_debt:
          anyOf:
            - type: number
            - type: "null"
          description: Gross debt before the event.
          title: Pre Gross Debt
        process_conclusion_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: Process end date.
          title: Process Conclusion Date
        process_initiation_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: Process start date.
          title: Process Initiation Date
        situation_types:
          description: Situation types. E.g., `Exchange Offer`, `Out-of-Court Restructuring`
          items:
            type: string
          title: Situation Types
          type: array
        sponsors:
          description: Sponsors on the event.
          items:
            $ref: "#/components/schemas/Sponsor"
          title: Sponsors
          type: array
        status:
          description: Process status. E.g., `Expected`, `In Progress`, `Completed`
          title: Status
          type: string
        trigger:
          anyOf:
            - type: string
            - type: "null"
          description: What initiated the process. E.g., `Upcoming Maturity - inability to
            refinance`
          title: Trigger
        updated_at:
          anyOf:
            - format: date-time
              type: string
            - type: "null"
          description: Timestamp when the event was last updated (ISO).
          title: Updated At
        uuid:
          description: Unique restructuring event identifier.
          format: uuid
          title: Uuid
          type: string
      required:
        - uuid
        - company
        - status
        - trigger
        - keywords
        - situation_types
        - jurisdictions
        - currency
        - pre_gross_debt
        - post_gross_debt
        - process_initiation_date
        - process_conclusion_date
        - sponsors
        - creditors
        - advisors
        - industry
        - created_at
        - updated_at
      title: Restructuring
      type: object
    Advisor:
      description: Advisor on the event.
      properties:
        name:
          description: Advisor name.
          title: Name
          type: string
        type:
          description: Party the advisor acted for.
          title: Type
          type: string
      required:
        - name
        - type
      title: Advisor
      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
    Creditor:
      description: Creditor on the event.
      properties:
        name:
          description: Creditor name.
          title: Name
          type: string
      required:
        - name
      title: Creditor
      type: object
    Industry:
      description: A company's industry classification.
      properties:
        l2:
          anyOf:
            - type: string
            - type: "null"
          description: Level-2 industry name.
          title: L2
      required:
        - l2
      title: Industry
      type: object
    Sponsor:
      description: Sponsor on the event.
      properties:
        name:
          description: Sponsor name.
          title: Name
          type: string
      required:
        - name
      title: Sponsor
      type: object
    RestructuringResponse:
      description: Cursor-paginated list of restructuring events.
      properties:
        items:
          description: Restructuring events that match the provided filter criteria.
          items:
            $ref: "#/components/schemas/Restructuring"
          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: RestructuringResponse
      type: object
```
