---
title: "IssuerEntity"
url: "https://console.9fin.com/apis/instruments-private-credit/versions/0a7cc486-1d5a-439d-bde2-7d398e87f4ee/schemas/IssuerEntity"
---

> Full API specification: https://console.9fin.com/apis/instruments-private-credit/versions/0a7cc486-1d5a-439d-bde2-7d398e87f4ee.md

# IssuerEntity

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9Fin Instruments (Private Credit) API
  version: 0.1.10
servers:
  - description: Production environment
    url: https://api.9fin.com
components:
  schemas:
    Company:
      properties:
        alias:
          anyOf:
            - items:
                type: string
              type: array
            - type: "null"
          description: Alternative names the company is also known by.
          title: Alias
        cik:
          anyOf:
            - type: integer
            - type: "null"
          description: SEC Central Index Key (CIK) identifying the company in SEC filings.
          title: Cik
        country_of_risk:
          description: Country to which the company's credit risk is primarily attributed.
          title: Country Of Risk
          type: string
        description:
          anyOf:
            - type: string
            - type: "null"
          description: Free-text description of the company and its business.
          title: Description
        full_name:
          description: Full legal name of the company.
          title: Full Name
          type: string
        industry:
          anyOf:
            - $ref: "#/components/schemas/Industry"
            - type: "null"
          description: Hierarchical industry classification of the company.
        nf_id:
          description: 9Fin ID for this company. Unique for all companies and across APIs.
          title: Nf Id
          type: string
        street_name:
          description: Name commonly used to identify the company.
          title: Street Name
          type: string
        website:
          anyOf:
            - format: uri
              minLength: 1
              type: string
            - type: "null"
          description: URL of the company's website.
          title: Website
      required:
        - nf_id
        - street_name
        - full_name
        - country_of_risk
        - description
        - industry
        - website
        - cik
        - alias
      title: Company
      type: object
    Industry:
      properties:
        level_1:
          description: Top-level (broadest) industry classification.
          title: Level 1
          type: string
        level_2:
          description: Second-level industry classification, nested under level 1.
          title: Level 2
          type: string
        level_3:
          description: Third-level (most granular) industry classification, nested under
            level 2.
          title: Level 3
          type: string
      required:
        - level_1
        - level_2
        - level_3
      title: Industry
      type: object
    IssuerEntity:
      properties:
        company:
          anyOf:
            - $ref: "#/components/schemas/Company"
            - type: "null"
          description: The parent company associated with the issuer entity.
        name:
          description: Name of the issuing/borrowing legal entity.
          title: Name
          type: string
      required:
        - name
        - company
      title: IssuerEntity
      type: object
```
