> ## Documentation Index
> Fetch the complete documentation index at: https://docs.monime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Country

<ResponseExample>
  ```json JSON Model theme={null}
  {
      "code": "SL",
      "name": "Sierra Leone",
      "currency": {
          "code": "SLE",
          "unit": "cent",
          "unitLength": null
      },
      "supportedCurrencies": [
          [
              "SLE"
          ]
      ]
  }
  ```
</ResponseExample>

<ResponseField name="📋" type="Properties">
  <ResponseField name="code" type="string">
    The ISO 3166-1 alpha-2 country code.

    Example: <code>SL</code>
  </ResponseField>

  <ResponseField name="name" type="string">
    The name of the country.

    Example: <code>Sierra Leone</code>
  </ResponseField>

  <ResponseField name="currency" type="object">
    The default currency object of the country.

    <Expandable title="properties">
      <ResponseField name="code" type="string">
        The [3-letter](https://en.wikipedia.org/wiki/ISO_4217) ISO currency code.

        Example: <code>SLE</code>
      </ResponseField>

      <ResponseField name="unit" type="string">
        The subunit for the currency.

        Example: <code>cent</code>
      </ResponseField>

      <ResponseField name="unitLength" type="integer">
        The unit length for the currency's subunit.
      </ResponseField>
    </Expandable>
  </ResponseField>

  <ResponseField name="supportedCurrencies" type="array">
    The list supported currency codes in ISO 4217 format in that country. It includes the default currency's code.

    Example: <code>\[SLE]</code>
  </ResponseField>
</ResponseField>
