Discover/Wise API
live

Wise APIwise.com

Get live Wise.com exchange rates, transfer fees, currency conversion, and historical rate data via a structured JSON API. 7 endpoints covering all major pairs.

Endpoint health
verified 13h ago
list_supported_currencies
convert_currency
get_currency_details
get_exchange_rate_history
get_transfer_fee
7/7 passing latest checkself-healing
Endpoints
7
Updated
22d ago

What is the Wise API?

This API exposes 7 endpoints covering Wise.com's exchange rates, transfer fees, and currency data. Use get_exchange_rate to fetch the current mid-market rate between any two currencies along with a 48-hour percentage change, or call convert_currency to get the exact recipient amount and total fee for a specific send amount. All responses return structured JSON fields ready to consume without parsing HTML.

Try it
Source currency code (e.g. USD, GBP, EUR)
Target currency code (e.g. EUR, USD, GBP)
api.parse.bot/scraper/e12755f4-6de3-4592-9b84-358de36519b2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e12755f4-6de3-4592-9b84-358de36519b2/get_exchange_rate?source=USD&target=EUR' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace wise-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Wise Currency API — compare transfer routes, check fees, track trends."""
from parse_apis.wise_currency_api import Wise, Period, CurrencyNotFound

client = Wise()

# List supported currencies and print a few
for cs in client.currencysummaries.list(limit=3):
    print(cs.code, cs.name, cs.symbol)

# Get full details for USD, including exchange rate table
usd = client.currencies.get(code="USD")
print(usd.name, usd.symbol, usd.description[:60])
for entry in usd.exchange_rate_table[:2]:
    print(f"  {entry.currency}: from={entry.from_rate} to={entry.to_rate}")

# Check available conversion pairs from USD
pair_info = usd.pairs()
print(f"{pair_info.base_currency} has {len(pair_info.available_pairs)} pairs")

# Get live exchange rate USD → EUR
rate = client.exchangerates.get(source="USD", target="EUR")
print(f"Rate: {rate.mid_market_rate}, 48h change: {rate.percentage_change_48h}%")

# Get historical rate data for the last week
history = client.exchangerates.history(source="USD", target="EUR", period=Period.ONE_WEEK)
print(f"Period {history.period}: current={history.current_rate}, change={history.percentage_change}%")
dp = history.data_points[0]
print(f"  First point: value={dp.value}, time={dp.time}")

# Convert 5000 USD → EUR and inspect fees
conversion = client.conversions.get(source="USD", target="EUR", amount=5000)
print(f"Send {conversion.amount_entered} {conversion.source_currency}")
print(f"Recipient gets {conversion.recipient_receives} {conversion.target_currency}, fee={conversion.total_fee}")

# Get full fee breakdown across payment methods
fees = client.transferfees.get(source="USD", target="EUR", amount=5000)
for opt in fees.pricing_options[:2]:
    print(f"  {opt.pay_in_method}→{opt.pay_out_method}: fee={opt.total_fee}, receives={opt.recipient_amount}")

# Typed error handling for an invalid currency
try:
    client.currencies.get(code="ZZZZZ")
except CurrencyNotFound as exc:
    print(f"Error: currency '{exc.code}' not found")

print("Exercised: currencysummaries.list, currencies.get, pairs, exchangerates.get, history, conversions.get, transferfees.get")
All endpoints · 7 totalmissing one? ·

Get the current mid-market exchange rate between two currencies. Returns the live rate, a 48-hour percentage change, and the timestamp. Useful for spot-checking rates before initiating a transfer.

Input
ParamTypeDescription
sourcerequiredstringSource currency code (e.g. USD, GBP, EUR)
targetrequiredstringTarget currency code (e.g. EUR, USD, GBP)
Response
{
  "type": "object",
  "fields": {
    "timestamp": "integer — Unix timestamp in milliseconds of the rate",
    "mid_market_rate": "number — current mid-market exchange rate",
    "source_currency": "string — source currency code",
    "target_currency": "string — target currency code",
    "percentage_change_48h": "number — percentage change over last 48 hours",
    "rate_guarantee_duration": "string — description of rate guarantee duration"
  },
  "sample": {
    "data": {
      "timestamp": 1781148615093,
      "mid_market_rate": 0.865988,
      "source_currency": "USD",
      "target_currency": "EUR",
      "percentage_change_48h": -0.0823,
      "rate_guarantee_duration": "Usually 24-48 hours depending on the route"
    },
    "status": "success"
  }
}

About the Wise API

Exchange Rates and Conversion

The get_exchange_rate endpoint takes a source and target currency code and returns the current mid-market rate (mid_market_rate), a Unix millisecond timestamp, and percentage_change_48h — useful for displaying rate movement to users. The convert_currency endpoint adds fee context: given an amount, source, and target, it returns recipient_receives, total_fee, pay_in_method, pay_out_method, and potential_savings (the estimated savings versus a traditional bank, or null if unavailable).

Transfer Fees and Pricing Options

get_transfer_fee goes deeper than a single conversion quote. For a given send amount and currency pair, it returns a pricing_options array where each object covers a distinct pay_in_method and pay_out_method combination, along with total_fee, variable_fee, fixed_fee, exchange_rate, recipient_amount, and an estimate field. This lets you compare, for example, the cost difference between paying by card versus bank transfer for the same corridor.

Currency Coverage and Historical Data

list_supported_currencies returns every currency Wise supports, each record including code, symbol, name, countryKeywords, and supportsDecimals. Use get_currency_pairs with a base code to retrieve the full list of available conversion pairs as an available_pairs array. get_currency_details returns a richer record for a single currency: currency_name, currency_symbol, description, and an exchange_rate_table array showing from_rate and to_rate against major currencies.

Historical Rates

get_exchange_rate_history accepts a period parameter (1D, 1W, 1M, 6M, 1Y, or 5Y) plus source and target codes. It returns a data_points array of timestamped rate objects, the current_rate, and a percentage_change over the selected window — enough to render a simple rate chart or build a volatility signal.

Reliability & maintenanceVerified

The Wise API is a managed, monitored endpoint for wise.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wise.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official wise.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
13h ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display live mid-market rates and 48-hour movement in a currency converter widget using get_exchange_rate.
  • Compare transfer costs across pay-in and pay-out method combinations using the pricing_options array from get_transfer_fee.
  • Show users how much a recipient will receive after fees for a given send amount using convert_currency.
  • Render a historical rate chart for any currency pair over 1D to 5Y periods using get_exchange_rate_history data points.
  • Populate a currency selector dropdown with codes, names, symbols, and decimal support flags from list_supported_currencies.
  • Build a currency detail page with cross-rates to major currencies using the exchange_rate_table from get_currency_details.
  • Check which target currencies are available for a given base currency before presenting transfer options using get_currency_pairs.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Wise have an official developer API?+
Yes. Wise publishes an official API for businesses and platforms at https://docs.wise.com/api-docs/. It requires account registration and is oriented toward sending transfers programmatically. The Parse API covers public rate, fee, and currency data without requiring a Wise account.
What does `get_transfer_fee` return that `convert_currency` does not?+
get_transfer_fee returns a pricing_options array covering multiple pay-in and pay-out method combinations in a single call. Each entry breaks the fee into variable_fee and fixed_fee components, so you can see the cost structure for bank transfer versus card versus other methods side by side. convert_currency returns a single quote for the default method combination along with a potential_savings estimate.
How fresh is the exchange rate data?+
Each get_exchange_rate response includes a timestamp field in Unix milliseconds reflecting when the rate was recorded. Wise updates its mid-market rates continuously during market hours, but the exact refresh cadence visible through the API depends on when the underlying rate data is updated on Wise's public pages. For time-sensitive applications, re-query frequently and compare timestamp values.
Does the API expose Wise account balances, transaction history, or recipient details?+
No. The API covers public market data: exchange rates, fee estimates, currency metadata, and historical rate series. Account-level data such as balances, past transfers, and recipient records are not exposed. You can fork this API on Parse and revise it to add endpoints that pull from Wise's official authenticated API if you need account-level data.
Can I retrieve exchange rates for exotic or less common currency pairs?+
The available pairs depend on what Wise supports for a given base currency. Use get_currency_pairs with your base code to check which target currencies are available before querying rates or fees. list_supported_currencies gives the full set of currency codes Wise recognizes, though not every combination has an active transfer corridor. If a corridor you need is missing, you can fork the API on Parse and revise it to surface additional data points.
Page content last updated . Spec covers 7 endpoints from wise.com.
Related APIs in FinanceSee all →
xe.com API
Access live mid-market exchange rates, convert between any currency pair, and retrieve historical rate data and currency metadata from xe.com.
x-rates.com API
x-rates.com API
forex.com API
Access real-time forex prices and currency exchange rates, track client sentiment and pivot points, and browse economic calendar events. Search across multiple currency instruments and retrieve rollover rates.
kraken.com API
Get live Kraken exchange market data including supported assets, trading pairs metadata, tickers, OHLCV candlesticks, and bid/ask spread history.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
cex.io API
Access real-time cryptocurrency market data from CEX.io, including live prices, tickers, order books, trade history, and OHLCV candles for spot trading pairs. Monitor market movements and analyze trading opportunities with comprehensive pricing and order depth information across supported cryptocurrencies.
goldprice.org API
Track real-time and historical prices for gold, silver, and other precious metals, plus monitor gold performance metrics and view precious metals news. Get current cryptocurrency prices, lookup gold rates by country, and check gold stock prices all in one place.
wits.worldbank.org API
Access comprehensive trade statistics, tariffs, and development indicators for countries worldwide through the World Bank's WITS platform. Look up country trade profiles, compare bilateral trade relationships between partners, and analyze key metrics including export/import volumes, tariff rates, GDP, and FDI. Ideal for researching international commerce, trade policy, and economic indicators across any country or region.