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

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

# CurrencyRange

A monetary value as a range, converted into each major currency. The same underlying amount is provided in EUR, GBP and USD for convenience, alongside the original currency and value as reported.

## 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:
    FloatRange:
      description: >-
        A numeric value expressed as a (possibly open-ended) range.


        Marketed metrics are frequently disclosed as ranges rather than exact

        figures, so values are represented by their bounds and whether each
        bound

        is inclusive.
      properties:
        lower:
          anyOf:
            - type: number
            - type: "null"
          description: Lower bound of the range; null if unbounded below.
          title: Lower
        lower_inclusive:
          description: Whether the lower bound is inclusive.
          title: Lower Inclusive
          type: boolean
        upper:
          anyOf:
            - type: number
            - type: "null"
          description: Upper bound of the range; null if unbounded above.
          title: Upper
        upper_inclusive:
          description: Whether the upper bound is inclusive.
          title: Upper Inclusive
          type: boolean
      required:
        - upper
        - lower
        - upper_inclusive
        - lower_inclusive
      title: FloatRange
      type: object
    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
    CurrencyRange:
      description: >-
        A monetary value as a range, converted into each major currency.


        The same underlying amount is provided in EUR, GBP and USD for
        convenience,

        alongside the original currency and value as reported.
      properties:
        eur:
          anyOf:
            - $ref: "#/components/schemas/FloatRange"
            - type: "null"
          description: Value converted to euros, expressed as a range.
        gbp:
          anyOf:
            - $ref: "#/components/schemas/FloatRange"
            - type: "null"
          description: Value converted to pounds sterling, expressed as a range.
        original_currency:
          anyOf:
            - $ref: "#/components/schemas/Currency"
            - type: "null"
          description: Currency the value was originally reported in.
        original_value:
          anyOf:
            - $ref: "#/components/schemas/FloatRange"
            - type: "null"
          description: Value in the original reporting currency, expressed as a range.
        usd:
          anyOf:
            - $ref: "#/components/schemas/FloatRange"
            - type: "null"
          description: Value converted to US dollars, expressed as a range.
      required:
        - eur
        - gbp
        - usd
        - original_currency
        - original_value
      title: CurrencyRange
      type: object
```
