The FX Connect API enables you to execute cross-border payments without integrating the Payment Initiation Service (PIS), operating seamlessly on top of your own existing bank integrations. With FX Connect, you can provide your users with real-time, transparent institutional FX rates for spot and forward transactions, together with automated cross-border settlement — while continuing to use your platform's own bank connections to initiate payments.
For requests to the FX Connect API, you need an access token with
scopeset topaymentinitiationcorporate.
Using FX Connect requires completed KYC verification on the PSU's organization. Refer to the KYC guide for information on how to implement this.
1. Create FX Quote
The first step is to create an FX quote to define the exchange rate, fees, and the validity period. FX quotes can be created for 180+ destination countries, with support for both spot and forward exchange rates (up to 30 days).
Endpoint
Code
Request Headers
| Name | Type | Description |
|---|---|---|
| X-Request-ID | string(uuid) | The ID of the request, unique to the call, as determined by the initiating party. |
Request Body
| Name | Type | Description |
|---|---|---|
| sourceCurrency | string | The source currency. |
| targetCurrency | string | The target currency. |
| requestedExecutionDate | string(date) | The requested execution date, for future payments. |
| countryCode | string | The target country. |
| amount | string | The requested amount. |
Code
Response
Code
The response contains an fxQuoteId which you will need to reference in the next step.
2. Confirm Cross-Border Payment Intent
Once an FX quote has been created and accepted by the PSU, the next step is to confirm the PSU's intent to proceed with the payment. In this request, you submit the final payment instructions for the specified fxQuoteId, allowing Open Payments to prepare the currency exchange and generate the funding instructions.
Confirming the payment intent locks in the FX rate and creates a binding commitment to execute the payment at the quoted terms.
Code
Path Parameters
| Name | Type | Description |
|---|---|---|
| fxQuoteId | string | The ID of the FX Quote to be confirmed and locked. |
Request Headers
| Name | Type | Description |
|---|---|---|
| X-Request-ID | string(uuid) | The ID of the request, unique to the call, as determined by the initiating party. |
| X-BicFi | string | The BIC of the bank to which the request is addressed. |
| PSU-ID | string | The ID used to identify the PSU at the bank. Typically a local social security number or another unique login ID. |
| PSU-Corporate-ID | string | The Corporate ID of the PSU when acting on behalf of an organization, e.g. Org. nummer for SE, KVK for NL. |
Request Body
| Name | Type | Description |
|---|---|---|
| instructedAmount | object | The amount and currency of the money to be transferred. |
| debtorAccount | object | The account from which the payment will be debited. |
| creditorName | string | The full name of the payment recipient. |
| creditorAccount | object | The account to which the payment will be credited. |
| creditorAddress | object | The address of the payment recipient. |
| creditorAgent | string | The BIC of the payment recipient's bank. |
| creditorAgentName | string | The name of the payment recipient's bank. |
| requestedExecutionDate | string(date) | The date when the payment is scheduled to be executed in ISO 8601 format, e.g. 2025-10-31. |
| remittanceInformationUnstructured | string | A free-text field for remittance information on the payment. |
Code
Response
Code
Upon successful confirmation of the payment intent, the response returns the payment instructions for transferring the funds to Open Payments' client funds account, including a mandatory payment reference.
3. Send Funds
Once the payment instructions are returned, you must immediately initiate the funding transfer from the PSU's account to our client funds account, to be executed on the stated date. The incoming funds will be automatically reconciled and the payout will be disbursed to the ultimate beneficiary.
The provided reference is used to uniquely identify the incoming funds. Do not alter the reference or payment details, as this may prevent the funds from being matched and delay the payout.

