List of available currencies

List of available currencies

GET https://pay.skinout.gg/api/v1/project/currencies

Medot returns a list of available currencies for the project.

Query Parameters

Name
Type
Description

project_id*

String

Project ID

Headers

Name
Type
Description

Api-Key*

String

{
    "success": true,
    "currencies": [
        {
            "name": "USD",
            "rate": "1.00"
        },
        {
            "name": "RUB",
            "rate": "92.14"
        }
    ]
}

Response param description

PARAM
DESCRIPTION
currencies

An array that contains the name of currencies and their exchange rate to USD.

Last updated