> ## Documentation Index
> Fetch the complete documentation index at: https://dev.nimbo-x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List currencies



## OpenAPI

````yaml /openapi/nimbo_public.yml get /api/v1/currencies
openapi: 3.1.0
info:
  title: Nimbo catalogs and sites
  version: 0.1.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; not a live API host
security: []
tags:
  - name: Countries
  - name: Catalogs
  - name: SAT Catalogs
  - name: Sites
  - name: Public Portals
  - name: Telehealth
paths:
  /api/v1/currencies:
    get:
      tags:
        - Catalogs
      summary: List currencies
      operationId: listCurrencies
      responses:
        '200':
          description: Currencies with the response root.
          content:
            application/json:
              schema:
                type: object
                required:
                  - currencies
                additionalProperties: false
                properties:
                  currencies:
                    type: array
                    items:
                      type: object
                      required:
                        - code
                        - id
                        - min_value
                        - name_en
                        - name_es
                        - symbol
                      additionalProperties: false
                      example:
                        id: 9201
                        name_es: Peso Mexicano
                        name_en: Mexican Peso
                        symbol: $
                        code: MXN
                        min_value: '0.01'
                      properties:
                        id:
                          type: integer
                        name_es:
                          type:
                            - string
                            - 'null'
                        name_en:
                          type:
                            - string
                            - 'null'
                        symbol:
                          type:
                            - string
                            - 'null'
                        code:
                          type:
                            - string
                            - 'null'
                        min_value:
                          type:
                            - number
                            - string
                            - 'null'

````