Pricing
We want our payment solution prices to be as transparent and easy to understand as possible. And of course, our prices are always among the lowest in the market.
from countries within the EU
and cards from outside the EU
Pricing based on average transaction value of over NOK 150,-
Monthly fee: NOK 195,- per sales location
const createSession = async () => {
const payload = {
order: {
amount: 20000,
currency: "NOK",
merchant_reference: "payment-1",
vat_amount: 5000,
items: [{
line_id: "stuff",
amount: 20000,
quantiy: 1,
vat_amount: 5000,
vat: 25,
}],
},
configuration: {
vipps: {
type: "payment_product_type",
enabled: true,
},
},
customer: {
phone_number: "+4741520477"
}
};
return await postSession(payload);
}