Получение цен Number Verifier

Для получения цен Number Verifier выполните запрос по этому URL:

GET https://api.notificore.ru/hlr/prices/{tariff}



Request parameters

Parameter Required Type Description
tariff No integer The optional parameter tariff indicates the number of the rating scale. By default (if absent) it is assumed to be 9 (Best quality tariff)

Если запрос успешен, вы получите ответ:

{
    "error": "0",
    "prices": [
        {
            "type": "hlr",
            "country": " AE",
            "country_name": "United Arab Emirates",
            "mcc": " 424",
            "price": "0.002",
            "currency": "EUR"
        },
        {
            "type": "hlr",
            "country": "AF",
            "country_name": "Afghanistan",
            "mcc": " 412",
            "price": "0.002",
            "currency": "EUR"
        }
    ]
}
                

Ответ будет содержать список всех стран, для которых доступны запросы Number Verifier, вместе с ценами.


In case the request contains an error, you will receive a response

{
    "error": "6",
    "errorDescription": "Invalid tariff code"
}