Получение списка методов

POST https://api.crystalpay.io/v3/method/list/

Body

Name
Type
Description

auth_login*

string

Логин кассы

auth_secret*

string

Секретный ключ кассы

compact

bool

Отображение только основной информации

* - обязательные поля

Response

{
    "error": false,
    "errors": [],
    "items": {
        "BITCOIN": {
            "name": "Bitcoin",
            "currency": "BTC",
            "amount_accuracy": 8,
            "minimal_status_level": 0,
            "settings": {
                "in": {
                    "enabled": true,
                    "extra_commissions": {
                        "amount": "0",
                        "percent": "10"
                    }
                },
                "out": {
                    "enabled": true,
                    "extra_commissions": {
                        "amount": "0",
                        "percent": "0"
                    }
                }
            },
            "in": {
                "enabled": true,
                "limits": {
                    "min": "0",
                    "max": "0"
                },
                "commissions": {
                    "amount": "0.000004",
                    "percent": "0"
                },
                "fee": "0"
            },
            "out": {
                "enabled": true,
                "limits": {
                    "min": "0.00005",
                    "max": "0.5"
                },
                "commissions": {
                    "amount": "0",
                    "percent": "1"
                },
                "fee": "0"
            }
        },
        ...
    }
}

Last updated