Get supported currencies
GET /v1/currencies
curl \
-X GET https://api.skinsmoney.gg/v1/currencies
Response examples (200)
{
"success": true,
"type": "response",
"data": [
{
"rate": 1,
"short_name": "$",
"code": "USD",
"updated_at": "2023-04-27T17:48:41.000000Z"
},
{
"rate": 4.15,
"short_name": "zł",
"code": "PLN",
"updated_at": "2023-09-01T20:00:02.000000Z"
},
{
"rate": 36.93,
"short_name": "₴",
"code": "UAH",
"updated_at": "2023-09-01T12:00:02.000000Z"
}
]
}