Skip to main content
GET
/
v1
/
currencies
/
{CurrencyCode}
Get Currency by Code
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/currencies/{CurrencyCode} \
  --header 'Authorization: <api-key>'
{
  "CurrencyID": 123,
  "CurrencyCode": "<string>",
  "CurrencySign": "<string>",
  "LastUpdated": "2023-11-07T05:31:56Z",
  "ShvaValue": "<string>",
  "ShvaCode": 123,
  "CurrencyISONumerical": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key. It's required to authenticate API requests.

Path Parameters

CurrencyCode
string
required

The unique code of the currency to be retrieved.

Response

200 - application/json

The details of the currency associated with the specified code.

Represents detailed information about a currency, including its identifiers, code, and other relevant details.

CurrencyID
integer<int32> | null

The unique identifier of the currency.

CurrencyCode
string | null

The ISO 4217 code of the currency (e.g., "USD" for US Dollar).

CurrencySign
string | null

The symbol used to represent the currency (e.g., "$" for US Dollar).

LastUpdated
string<date-time> | null

The date and time when the currency information was last updated.

ShvaValue
string | null

A value associated with the currency in the Shva system.

ShvaCode
integer<int32> | null

The Shva system code associated with the currency.

CurrencyISONumerical
string | null

The ISO 4217 numeric code of the currency (e.g., "840" for US Dollar).