Order pricing

The total price of an order is determined by the face value and discounts of the items you’re purchasing, plus any additional fees that apply to the order.

Estimate order price

To provide you with a clear breakdown of the order price before you confirm your purchase the estimate order endpoint can optionally be used to get your estimated order price including fees. It accepts a request similar to the one used for creating an order and responds with a detailed breakdown of the estimated price for both the overall order and each individual item within the order.

Please note that the order price estimate endpoint does not support Embedded FX orders.

Below is an estimate request and response for an order with 2 order items.

The response contains fields that are related to the order price.

  • Price of each item is presented in the price field.
  • The total_price is the sum of all order item prices
{
  "payment_method": {
    "type": "ACCOUNT_BALANCE",
    "currency": "GBP"
  },
  "items": [
    {
      "face_value": 10,
      "products": {
        "type": "SINGLE",
        "value": "AMZ-GB"
      }
    },
    {
      "face_value": 10,
      "products": {
        "type": "SINGLE",
        "value": "AMZ-GB"
      }
    }
  ]
}