As a Revolut Business customer, you can use the Business API to automate your own business processes. Save time, reduce your costs, and avoid errors by using the Business API.
You can view accounts, manage counterparties, make payments or currency exchanges without manual effort in the Web UI.
To get started using the Business API, check the user guides.
To see the reference for the specific endpoints and operations of this API, browse the menu on the left.
You can test the Business API in Postman:
Each Business API request must contain an authorization header in the following format to make a call: Bearer <your_access_token>
.
The access token will be obtained the first time you set up your application and has an expiration of 40 minutes.
During setup, a refresh_token
will also be obtained which allows to obtain a new access_token
.
Never share your client-assertion JWT (JSON web token), access_token
and refresh_token
with anyone, as these can be used to access your banking data and initiate transactions.
Access tokens can be issued with four security scopes and require a JWT (JSON Web Token) signature to be obtained:
READ
: Permissions for GET
operations.
WRITE
: Permissions to update counterparties, webhooks, and issue payment drafts.
PAY
: Permissions to initiate or cancel transactions and currency exchanges.
READ_SENSITIVE_CARD_DATA
: Permissions to retrieve sensitive card details.
If you enable the READ_SENSITIVE_CARD_DATA
scope for your access token, you must set up IP whitelisting.
Failing to do so will prevent you from accessing any Business API endpoint.
IP whitelisting means that you must specify an IP or a set of IPs which will be the only IPs from which requests to the API will be accepted. To do so:
To configure your JWT and obtain the refresh and first access tokens, complete the following steps: