Get prices for Offer page

POST
/api/v3/products/shop-prices
lts

This endpoint is used to retrieve product prices for the Offer page. The prices returned in the response can be calculated per product on a per-day, per-week, or per-month basis.

Header parameters
Attribute
Requirement
Description
x-public-key
mandatory
a public key that identifies the merchant account (there can be several for one merchant)
x-buyer-ip
mandatory
is responsible for information about the buyer's IP address
x-date
mandatory
is responsible for the date and time of sending the request
x-token
mandatory
generated on the merchant side
x-source
mandatory
identifier of the type of service that is the initiator of the request
x-id
mandatory
service identifier from which the current request is made
Request parameters
Attribute
Type
Requirement
Description
Standard
currency
string
optional
The currency in which the prices should be returned
ISO 4217 Alphabetic
products
array of objects
mandatory
An array of data about actions performed on the subscription(s)
-
Response parameters
Attribute
Type
Description
data
object
Contains information related to the order
meta
array
Provides metadata about the response
{
    "data": {
        "currency": "EUR",
        "tax": {
            "type": "vat",
            "country": "sk"
        },
        "products": [
            {
                "nameByLocale": "mSpy 1-Month Basic Subscription",
                "durationDays": 28,
                "durationWeeks": 4,
                "durationMonths": 1,
                "availableForPurchase": true,
                "availableForShop": true,
                "availableForControlPanel": true,
                "availableForAutocharge": true,
                "isTrial": false,
                "id": "c4bc3816-e0bd-4655-af32-54d355e47430",
                "code": "MMBM",
                "name": "mSpy 1-Month Basic Subscription",
                "prices": {
                    "amount": {
                        "origin": "26.99",
                        "discountPercent": "30.00",
                        "discount": "8.10",
                        "amountWithDiscount": "18.89",
                        "couponPercent": "50.00",
                        "couponCode": "SRC50OFF",
                        "coupon": "9.45",
                        "amountWithDiscountAndCoupon": "9.44",
                        "taxPercent": "20.00",
                        "tax": "1.89",
                        "amountWithDiscountAndCouponAndTax": "11.33"
                    },
                    "monthlyAmount": {
                        "origin": "26.99",
                        "discountPercent": "30.00",
                        "discount": "8.10",
                        "amountWithDiscount": "18.89",
                        "couponPercent": "50.00",
                        "couponCode": "SRC50OFF",
                        "coupon": "9.45",
                        "amountWithDiscountAndCoupon": "9.44",
                        "taxPercent": "20.00",
                        "tax": "1.89",
                        "amountWithDiscountAndCouponAndTax": "11.33"
                    }
                }
            },
            {
                "nameByLocale": "mSpy 1-Month Premium Subscription",
                "durationDays": 28,
                "durationWeeks": 4,
                "durationMonths": 1,
                "availableForPurchase": true,
                "availableForShop": true,
                "availableForControlPanel": true,
                "availableForAutocharge": true,
                "isTrial": false,
                "id": "d1f19524-df4b-4096-8490-2ede064344e7",
                "code": "MMPM",
                "name": "mSpy 1-Month Premium Subscription",
                "prices": {
                    "amount": {
                        "origin": "59.99",
                        "discountPercent": "20.00",
                        "discount": "12.00",
                        "amountWithDiscount": "47.99",
                        "couponPercent": "0.00",
                        "couponCode": null,
                        "coupon": "0.00",
                        "amountWithDiscountAndCoupon": "47.99",
                        "taxPercent": "20.00",
                        "tax": "9.60",
                        "amountWithDiscountAndCouponAndTax": "57.59"
                    },
                    "weeklyAmount": {
                        "origin": "15.00",
                        "discountPercent": "20.00",
                        "discount": "3.00",
                        "amountWithDiscount": "12.00",
                        "couponPercent": "0.00",
                        "couponCode": null,
                        "coupon": "0.00",
                        "amountWithDiscountAndCoupon": "12.00",
                        "taxPercent": "20.00",
                        "tax": "2.40",
                        "amountWithDiscountAndCouponAndTax": "14.40"
                    }
                }
            },
            {
                "nameByLocale": "mSpy 3-Month Premium Subscription",
                "durationDays": 84,
                "durationWeeks": 12,
                "durationMonths": 3,
                "availableForPurchase": true,
                "availableForShop": true,
                "availableForControlPanel": true,
                "availableForAutocharge": true,
                "isTrial": false,
                "id": "60d862e2-67ef-486d-83c4-5e0328fc6fe8",
                "code": "MMP3",
                "name": "mSpy 3-Month Premium Subscription",
                "prices": {
                    "amount": {
                        "origin": "100.99",
                        "discountPercent": "0.00",
                        "discount": "0.00",
                        "amountWithDiscount": "100.99",
                        "couponPercent": "0.00",
                        "couponCode": null,
                        "coupon": "0.00",
                        "amountWithDiscountAndCoupon": "100.99",
                        "taxPercent": "20.00",
                        "tax": "20.20",
                        "amountWithDiscountAndCouponAndTax": "121.19"
                    },
                    "weeklyAmount": {
                        "origin": "8.42",
                        "discountPercent": "0.00",
                        "discount": "0.00",
                        "amountWithDiscount": "8.42",
                        "couponPercent": "0.00",
                        "couponCode": null,
                        "coupon": "0.00",
                        "amountWithDiscountAndCoupon": "8.42",
                        "taxPercent": "20.00",
                        "tax": "1.68",
                        "amountWithDiscountAndCouponAndTax": "10.10"
                    }
                }
            }
        ]
    },
    "meta": []
}