Skip to content

website.php

Website integration module for managing preorders, checking customer status, validating contact details, and retrieving pricing information.


website/get_ip_pricing

Returns IP pricing information for the specified currency.

HTTP method: POST|GET

Parameters:

Parameter Required Type Description
action ✅ string Method identifier: get_ip_pricing
currency ❌ string Currency code for pricing.
params[currency] ❌ string Currency code for pricing. Example: EUR, USD, RUB.

Request example

curl -s "https://invapi.hostkey.com/website.php" -X POST|GET \
--data "action=get_ip_pricing"
Success response example
{
"result": "OK",
"action": "get_ip_pricing",
"data": {
"EUR": 10.5,
"USD": 11.2,
"RUB": 1050.0
}
}
Error examples
{
"code": -1,
"message": "Error description"
}
question_mark
Is there anything I can help you with?
question_mark
AI Assistant ×