Wise Currency Converter Helper avatar

Wise Currency Converter Helper

Pricing

from $1.00 / 1,000 output rows

Go to Apify Store
Wise Currency Converter Helper

Wise Currency Converter Helper

Fetches currency conversion quotes from Wise's public gateway API for multiple currency pairs/amounts in a single run.

Pricing

from $1.00 / 1,000 output rows

Rating

0.0

(0)

Developer

R.L.

R.L.

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 hours ago

Last modified

Categories

Share

What does Wise Currency Converter Helper do?

Wise Currency Converter Helper fetches currency conversion quotes from Wise's public savings gateway API for any number of currency pairs and amounts in a single run. Give it a list of source/target currency codes and send amounts, and it returns the raw quote data Wise's own converter widget uses — fees, exchange rate, and converted amount — without opening a browser. Run it once, on a schedule, or trigger it via the Apify API to keep quote data fresh in your own systems.

Why use Wise Currency Converter Helper?

  • Batch quotes - check dozens of currency pairs/amounts in one run instead of manually loading wise.com for each one.
  • Automation-friendly - schedule runs, call via the Apify API, or wire into Zapier/Make to track rates over time.
  • No maintenance - runs on Apify's infrastructure with monitoring, retries, and structured output built in.

How to use Wise Currency Converter Helper

  1. Open the Actor's Input tab.
  2. Add one or more entries to the conversions array, each with sourceCurrency, targetCurrency, and sendAmount.
  3. Optionally set a default alias (applied to any conversion that doesn't specify its own).
  4. Click Start and view results in the Dataset tab once the run finishes.

Input

FieldTypeDescription
conversionsarrayList of conversion requests. Each item needs sourceCurrency, targetCurrency, sendAmount, and may override alias.
aliasstringDefault value for the Wise alias query param (default: wise).
requestDelaySecsintegerDelay between consecutive requests, in seconds (default: 1).

Example input:

{
"conversions": [
{ "sourceCurrency": "GBP", "targetCurrency": "IDR", "sendAmount": 666 },
{ "sourceCurrency": "USD", "targetCurrency": "EUR", "sendAmount": 1000 }
]
}

Output

Each dataset item contains the request parameters plus the flattened Wise API response:

{
"sourceCurrency": "GBP",
"targetCurrency": "IDR",
"sendAmount": 666,
"type": "...",
"alias": "wise",
"value": 28.07,
"currency": "GBP",
"accuracy": "HIGH"
}

If a request fails, the item instead contains an error field describing the failure so the run doesn't stop for the rest of the batch.

You can download the dataset in various formats such as JSON, HTML, CSV, or Excel.

Pricing / Cost estimation

This Actor makes one lightweight HTTP request per conversion pair - runs are fast and cheap, typically well within Apify's free tier for reasonable batch sizes.

Tips

  • Keep requestDelaySecs at 1+ second to avoid rate limiting from Wise.
  • Batch related pairs into a single run rather than many small runs to save on startup overhead.

FAQ, disclaimers, and support

This Actor calls an undocumented, public endpoint used by Wise's own website widget; Wise may change or restrict it without notice. Use responsibly and in line with Wise's Terms of Service. Report issues via the Actor's Issues tab.