action nowpayments_get_the_minimum_payment_amount { label: "Get the minimum payment amount" description: "Get the minimum payment amount for a specific pair.\n\nYou can provide both currencies in the pair or just currency\\_from, and we will calculate the minimum payment amount for currency\\_from and currency which you have specified as the outcome in the Store Settings.\n\nYou can also specify one of the fiat currencies in the currency\\_from. In this case, the minimum payment will be calculated in this fiat currency.\n\nYou can also add field fiat\\_equivalent (optional field) to get the fiat equivalent of the minimum amount.\n\nIn the case of several outcome wallets we will calculate the minimum amount in the same way we route your payment to a specific wallet." provider: nowpayments method: GET path: "/v1/min-amount" encoding: json input: { type: "object" properties: { currency_from: { type: "string" } currency_to: { type: "string" } "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { currency_from: { type: "string" } currency_to: { type: "string" } fiat_equivalent: { type: "number" } min_amount: { type: "number" } } } }