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

# Get Currencies

> Retrieves a list of currencies, optionally filtered by `CurrencyID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/currencies
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/currencies:
    get:
      tags:
        - Lookups
      summary: Get Currencies
      description: Retrieves a list of currencies, optionally filtered by `CurrencyID`.
      operationId: get-currencies
      parameters:
        - name: CurrencyID
          in: query
          description: The unique identifier of the currency to filter the results.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of currencies matching the specified criteria.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Currency'
components:
  schemas:
    Currency:
      type: object
      description: >-
        Represents detailed information about a currency, including its
        identifiers, code, and other relevant details.
      properties:
        CurrencyID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the currency.
        CurrencyCode:
          type: string
          nullable: true
          description: The ISO 4217 code of the currency (e.g., "USD" for US Dollar).
        CurrencySign:
          type: string
          nullable: true
          description: The symbol used to represent the currency (e.g., "$" for US Dollar).
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the currency information was last updated.
        ShvaValue:
          type: string
          nullable: true
          description: A value associated with the currency in the Shva system.
        ShvaCode:
          type: integer
          format: int32
          nullable: true
          description: The Shva system code associated with the currency.
        CurrencyISONumerical:
          type: string
          nullable: true
          description: >-
            The ISO 4217 numeric code of the currency (e.g., "840" for US
            Dollar).
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````