action interzoid_convertcurrency { label: "Converts amount in one currency to that of another" description: "Provide an amount in one currency (EUR, GBP, CNY, JPY, AUD, etc.), and also a second currency to convert it to. The API will return the result using current foreign exchange rates. See the API home page for a list of all supported currencies." provider: interzoid method: GET path: "/convertcurrency" encoding: json input: { type: "object" properties: { amount: { type: "string" } from: { type: "string" } license: { type: "string" } to: { type: "string" } } required: ["amount", "from", "license", "to"] additionalProperties: false } output: { type: "object" properties: { Code: { type: "string" } Converted: { type: "string" } Credits: { type: "string" } Currency: { type: "string" } } } }