> ## Documentation Index
> Fetch the complete documentation index at: https://api-doc.fidly.be/llms.txt
> Use this file to discover all available pages before exploring further.

# List Currencies

> The currencies a document's amounts can be expressed in.

The label is translated; the symbol is not — `€` and `$` are the same sign in every
language, so there is only one column for it.



## OpenAPI

````yaml /openapi.json get /currencies
openapi: 3.1.0
info:
  title: Fidly API
  version: 1.0.0
servers:
  - url: https://api.fidly.be
    description: Production
security: []
paths:
  /currencies:
    get:
      tags:
        - reference
      summary: List Currencies
      description: >-
        The currencies a document's amounts can be expressed in.


        The label is translated; the symbol is not — `€` and `$` are the same
        sign in every

        language, so there is only one column for it.
      operationId: list_currencies_currencies_get
      parameters:
        - name: language
          in: query
          required: true
          schema:
            type: string
            description: >-
              Language the labels are returned in, one of ['fr', 'en', 'nl',
              'de']. Required: a list of codes with no wording to display them
              is of no use, and there is no sensible language to pick on the
              caller's behalf.
            title: Language
          description: >-
            Language the labels are returned in, one of ['fr', 'en', 'nl',
            'de']. Required: a list of codes with no wording to display them is
            of no use, and there is no sensible language to pick on the caller's
            behalf.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CurrencyOut'
                title: Response List Currencies Currencies Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CurrencyOut:
      properties:
        code:
          type: string
          title: Code
          description: ISO 4217 code, to send in a document's `currency` (e.g. `EUR`).
        symbol:
          anyOf:
            - type: string
            - type: 'null'
          title: Symbol
          description: >-
            Currency sign (`€`, `$`, `¥`). Not translated: it is the same in
            every language.
        label:
          anyOf:
            - type: string
            - type: 'null'
          title: Label
          description: >-
            Name of the currency, in the requested language (e.g. `Dollar des
            États-Unis`).
      type: object
      required:
        - code
        - symbol
        - label
      title: CurrencyOut
      description: A currency a document's amounts can be expressed in.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````