Skip to main content

Get Currency

Get currency
GET

Retrieve the details of all currency.

Request

GET

GET /v1/currencies

Headers

  • Authorization: Bearer your_access_token

Response

200

Body

  • currency_idinteger

    Example: 1

  • codestring

    Example: USD

  • countrystring

    Example: Albania

  • currencystring

    Example: Dollars

  • symbolstring

    Example: $

401

Body

  • unauthorised

Response Example

[
{
"currency_id": 1,
"code": "ALL",
"country": "Albania",
"currency": "Leke",
"symbol": "Lek"
},
{
"currency_id": 2,
"code": "USD",
"country": "America",
"currency": "Dollars",
"symbol": "$"
}
]
}