action nowpayments_get_estimated_price { label: "Get estimated price" description: "This is a method for calculating the approximate price in cryptocurrency for a given value in Fiat currency. You will need to provide the initial cost in the Fiat currency (amount, currency_from) and the necessary cryptocurrency (currency_to)\nCurrently following fiat currencies are available: usd, eur, nzd, brl, gbp." provider: nowpayments method: GET path: "/v1/estimate" encoding: json input: { type: "object" properties: { amount: { type: "string" } currency_from: { type: "string" } currency_to: { type: "string" } "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { amount_from: { type: "number" } currency_from: { type: "string" } currency_to: { type: "string" } estimated_amount: { type: "number" } } } }