Wise Currency Converter Helper
Pricing
from $1.00 / 1,000 output rows
Wise Currency Converter Helper
Fetches currency conversion quotes from Wise's public gateway API for multiple currency pairs/amounts in a single run.
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
- Open the Actor's Input tab.
- Add one or more entries to the
conversionsarray, each withsourceCurrency,targetCurrency, andsendAmount. - Optionally set a default
alias(applied to any conversion that doesn't specify its own). - Click Start and view results in the Dataset tab once the run finishes.
Input
| Field | Type | Description |
|---|---|---|
conversions | array | List of conversion requests. Each item needs sourceCurrency, targetCurrency, sendAmount, and may override alias. |
alias | string | Default value for the Wise alias query param (default: wise). |
requestDelaySecs | integer | Delay 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
requestDelaySecsat 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.