Get currencies

Get a paginated list of currencies.

GET /currencies

Query params

None

Sorting

PropertyDescription

id

Sort currencies by id

Default sorting is id ASC

Optional properties

None

Response

PaginatedResponse<Currency>

Example

curl -X 'GET' \
  'https://api.testnet.cspr.cloud/currencies' \
  -H 'accept: application/json' \
  -H 'authorization: 55f79117-fc4d-4d60-9956-65423f39a06a'
{
  "data": [
    {
      "id": 1,
      "code": "USD",
      "type_id": 1
    },
    {
      "id": 2,
      "code": "EUR",
      "type_id": 1
    },
    ...
    {
      "id": 10,
      "code": "ETH",
      "type_id": 2
    }
  ]
}

Last updated