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

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

# Currency

## 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:
    Currency:
      properties:
        code:
          description: ISO 4217 currency code (e.g. EUR, GBP, USD).
          title: Code
          type: string
        name:
          description: Human-readable currency name.
          title: Name
          type: string
      required:
        - code
        - name
      title: Currency
      type: object
```
