Currencies

Supported Fiat Currencies, Coins, StableCoins and Tokens.

The Currency Object

Name
Type
Description

Id

Number

Unique identifier for the object

name

String

Currency name

symbol

String

A symbol describes currency

currencyType

String

A type of currency: crypto or fiat

minPayout

Number

A minimum withdrawal value

createdAt

Date

Time at which the object was created

Lists all currencies

GET /api/v2/currencies

Get a list of all supported currencies.

Query Parameters

Name
Type
Description

page

number

Current Page

{
    "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