Skip to content

Revolut - Get Accounts

This module allows getting Revolut Business accounts. Revolut supports multiple currencies, each with its own virtual account and independent balance.

FieldTypeRequiredDescription
credentials_idcredentialYesRevolut credentials
account_idstringNoSpecific account UUID (empty = all)

This module requires Revolut Business type credentials with the following fields:

FieldDescription
access_tokenRevolut Business API access token
sandboxSandbox mode for testing (true/false)
{
"success": true,
"account": { ... },
"account_id": "a1b2c3d4-...",
"name": "Main Account",
"currency": "EUR",
"balance": 15000.50,
"state": "active",
"message": "Cuenta Main Account (EUR): 15000.50 EUR"
}
{
"success": true,
"accounts": [ ... ],
"total": 5,
"by_currency": {
"EUR": [...],
"USD": [...],
"GBP": [...]
},
"currencies": ["EUR", "USD", "GBP"],
"message": "5 cuentas encontradas en 3 monedas"
}
StatusDescription
activeActive and operational account
inactiveInactive account
{
"credentials_id": "revolut_empresa",
"account_id": ""
}
  • Revolut supports multiple currencies in the same business account
  • Each currency has its own virtual account
  • The balance is returned in the account’s native currency
  • RevolutCreatePayment: Create payments from an account
  • RevolutGetTransactions: View account transactions
  • RevolutGetExchangeRates: Check exchange rates between accounts