KosmoKrator

sales

Revolut CLI for AI Agents

Use the Revolut CLI from KosmoKrator to call Revolut tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

7 functions 7 read 0 write Bearer token auth

Revolut CLI Setup

Revolut can be configured headlessly with `kosmokrator integrations:configure revolut`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure revolut --set access_token="$REVOLUT_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor revolut --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
access_token REVOLUT_ACCESS_TOKEN Secret secret yes Access Token

Call Revolut Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call revolut.revolut_list_accounts '{}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:revolut revolut_list_accounts '{}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

kosmo integrations:docs revolut --json
kosmo integrations:docs revolut.revolut_list_accounts --json
kosmo integrations:schema revolut.revolut_list_accounts --json
kosmo integrations:search "Revolut" --json
kosmo integrations:list --json

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Revolut.

revolut.revolut_list_accounts

Read read

List all Revolut business accounts. Returns account IDs, names, balances, and currency information.

Parameters
none

Generic CLI call

kosmo integrations:call revolut.revolut_list_accounts '{}' --json

Provider shortcut

kosmo integrations:revolut revolut_list_accounts '{}' --json

revolut.revolut_get_account

Read read

Retrieve a Revolut account by ID. Returns full account details including balance, currency, and state.

Parameters
id

Generic CLI call

kosmo integrations:call revolut.revolut_get_account '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:revolut revolut_get_account '{"id":"example_id"}' --json

revolut.revolut_list_transactions

Read read

List Revolut transactions with optional filters. Supports filtering by account, date range, type, and pagination with count.

Parameters
account_id, from, to, count, type

Generic CLI call

kosmo integrations:call revolut.revolut_list_transactions '{"account_id":"example_account_id","from":"example_from","to":"example_to","count":1,"type":"example_type"}' --json

Provider shortcut

kosmo integrations:revolut revolut_list_transactions '{"account_id":"example_account_id","from":"example_from","to":"example_to","count":1,"type":"example_type"}' --json

revolut.revolut_get_transaction

Read read

Retrieve a Revolut transaction by ID. Returns full transaction details including amount, currency, legs, and state.

Parameters
id

Generic CLI call

kosmo integrations:call revolut.revolut_get_transaction '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:revolut revolut_get_transaction '{"id":"example_id"}' --json

revolut.revolut_list_cards

Read read

List all Revolut business cards. Returns card IDs, last 4 digits, status, and cardholder information.

Parameters
none

Generic CLI call

kosmo integrations:call revolut.revolut_list_cards '{}' --json

Provider shortcut

kosmo integrations:revolut revolut_list_cards '{}' --json

revolut.revolut_get_card

Read read

Retrieve a Revolut card by ID. Returns full card details including status, limits, and cardholder information.

Parameters
id

Generic CLI call

kosmo integrations:call revolut.revolut_get_card '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:revolut revolut_get_card '{"id":"example_id"}' --json

revolut.revolut_get_current_user

Read read

Get the currently authenticated Revolut user. Returns user profile information including name, email, and phone.

Parameters
none

Generic CLI call

kosmo integrations:call revolut.revolut_get_current_user '{}' --json

Provider shortcut

kosmo integrations:revolut revolut_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

revolut.revolut_list_accounts

List all Revolut business accounts. Returns account IDs, names, balances, and currency information.

Operation
Read read
Schema command
kosmo integrations:schema revolut.revolut_list_accounts --json
ParameterTypeRequiredDescription
No parameters.

revolut.revolut_get_account

Retrieve a Revolut account by ID. Returns full account details including balance, currency, and state.

Operation
Read read
Schema command
kosmo integrations:schema revolut.revolut_get_account --json
ParameterTypeRequiredDescription
id string yes Revolut account ID.

revolut.revolut_list_transactions

List Revolut transactions with optional filters. Supports filtering by account, date range, type, and pagination with count.

Operation
Read read
Schema command
kosmo integrations:schema revolut.revolut_list_transactions --json
ParameterTypeRequiredDescription
account_id string no Filter transactions by account ID.
from string no Start date for transactions (ISO 8601, e.g., "2026-01-01T00:00:00Z").
to string no End date for transactions (ISO 8601, e.g., "2026-04-07T23:59:59Z").
count integer no Number of transactions to return (max 1000).
type string no Filter by transaction type (e.g., "card_payment", "transfer", "fx").

revolut.revolut_get_transaction

Retrieve a Revolut transaction by ID. Returns full transaction details including amount, currency, legs, and state.

Operation
Read read
Schema command
kosmo integrations:schema revolut.revolut_get_transaction --json
ParameterTypeRequiredDescription
id string yes Revolut transaction ID.

revolut.revolut_list_cards

List all Revolut business cards. Returns card IDs, last 4 digits, status, and cardholder information.

Operation
Read read
Schema command
kosmo integrations:schema revolut.revolut_list_cards --json
ParameterTypeRequiredDescription
No parameters.

revolut.revolut_get_card

Retrieve a Revolut card by ID. Returns full card details including status, limits, and cardholder information.

Operation
Read read
Schema command
kosmo integrations:schema revolut.revolut_get_card --json
ParameterTypeRequiredDescription
id string yes Revolut card ID.

revolut.revolut_get_current_user

Get the currently authenticated Revolut user. Returns user profile information including name, email, and phone.

Operation
Read read
Schema command
kosmo integrations:schema revolut.revolut_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.