Get a paginated list of currencies.
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
}
]
}