Skip to content
For LLMsView as Markdown·

Wise

International money transfers, multi-currency accounts, and exchange rates via the Wise (TransferWise) API.

DetailValue
CategoryFinance
Base URLhttps://api.transferwise.com/v1
AuthenticationBearer Token
Endpoints4
Connector keywise

Using Wise in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Wise from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /v1/profilesList user profiles
POST /v1/quotesCreate a transfer quote
POST /v1/transfersCreate a transfer
GET /v1/transfers/{transferId}Get transfer details

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /v1/profiles

List user profiles

DetailValue
Operation IDfintech.listProfiles
MethodGET
Path/v1/profiles

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Wise connection from the Connection dropdown.
  3. In the Operation dropdown, select fintech.listProfiles.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Wise API reference.

POST /v1/quotes

Create a transfer quote

DetailValue
Operation IDfintech.createQuote
MethodPOST
Path/v1/quotes

Parameters

No parameters.

Request Body

FieldType
sourceCurrencystring
targetCurrencystring
sourceAmountnumber

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Wise connection from the Connection dropdown.
  3. In the Operation dropdown, select fintech.createQuote.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Wise API reference.

POST /v1/transfers

Create a transfer

DetailValue
Operation IDfintech.createTransfer
MethodPOST
Path/v1/transfers

Parameters

No parameters.

Request Body

FieldType
targetAccountinteger
quoteUuidstring
customerTransactionIdstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Wise connection from the Connection dropdown.
  3. In the Operation dropdown, select fintech.createTransfer.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Wise API reference.

GET /v1/transfers/{transferId}

Get transfer details

DetailValue
Operation IDfintech.getTransfer
MethodGET
Path/v1/transfers/{transferId}

Parameters

NameLocationTypeRequired
transferIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Wise connection from the Connection dropdown.
  3. In the Operation dropdown, select fintech.getTransfer.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Wise API reference.