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

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

# Sponsor

## 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:
    Sponsor:
      properties:
        full_name:
          description: Full legal name of the private equity sponsor.
          title: Full Name
          type: string
        short_name:
          description: Abbreviated or commonly used name of the sponsor.
          title: Short Name
          type: string
        street_name:
          description: Name commonly used to identify the sponsor.
          title: Street Name
          type: string
        website:
          anyOf:
            - format: uri
              minLength: 1
              type: string
            - type: "null"
          description: URL of the sponsor's website.
          title: Website
      required:
        - street_name
        - full_name
        - short_name
        - website
      title: Sponsor
      type: object
```
