Appearance
Revolut Business
Business banking with multi-currency accounts, payments, and transaction management via Revolut.
| Detail | Value |
|---|---|
| Category | Finance |
| Base URL | https://b2b.revolut.com/api/1.0 |
| Authentication | Bearer Token |
| Endpoints | 3 |
| Connector key | revolut-business |
Using Revolut Business in a workflow
- Go to Connections and click New Connection.
- Pick Revolut Business from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /accounts | List all accounts |
POST /pay | Create a payment |
GET /transactions | List transactions |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /accounts
List all accounts
| Detail | Value |
|---|---|
| Operation ID | fintech.listAccounts |
| Method | GET |
| Path | /accounts |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Revolut Business connection from the Connection dropdown.
- In the Operation dropdown, select
fintech.listAccounts. - 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 Revolut Business API reference.
POST /pay
Create a payment
| Detail | Value |
|---|---|
| Operation ID | fintech.createPayment |
| Method | POST |
| Path | /pay |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
request_id | string |
account_id | string |
receiver | object |
amount | number |
currency | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Revolut Business connection from the Connection dropdown.
- In the Operation dropdown, select
fintech.createPayment. - 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 Revolut Business API reference.
GET /transactions
List transactions
| Detail | Value |
|---|---|
| Operation ID | fintech.listTransactions |
| Method | GET |
| Path | /transactions |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
from | query | string | No |
to | query | string | No |
count | query | integer | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Revolut Business connection from the Connection dropdown.
- In the Operation dropdown, select
fintech.listTransactions. - 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 Revolut Business API reference.