Currencies
Supported Fiat Currencies, Coins, StableCoins and Tokens.
The Currency Object
Name
Type
Description
Lists all currencies
Query Parameters
Name
Type
Description
{
"data": [
{
"id": 1,
"name": "Bitcoin",
"symbol": "BTC",
"currencyType": "Crypto",
"minPayout": "0.001000000000000000",
"createdAt": "2022-09-27T09:17:08.000000Z"
},
...
{
"id": 23,
"name": "Tron",
"symbol": "TRX",
"currencyType": "Crypto",
"minPayout": "20.000000000000000000",
"createdAt": "2022-12-12T21:59:12.000000Z"
}
],
"links": {
"first": "/api/v2/currencies?page=1",
"last": "/api/v2/currencies?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/api/v2/currencies?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/api/v2/currencies",
"per_page": 20,
"to": 9,
"total": 9
}
}Last updated