AI Agents

Banking API for AI Agents

A powerful API and ready-made skills to let AI agents manage business banking — balances, payments, FX, and more.

Get API Access
brighty-agent
> agent: check balance for account EUR
Balance: €12,450.00
> agent: send €500 to DE89370400440532013000
SEPA transfer initiated. ETA: instant
> agent: exchange 1000 USD to EUR
Exchanged $1,000.00 → €921.50 (rate: 0.9215)
> agent: pay for invoice ~/Downloads/service_invoice_120226.pdf from usdc
Invoice paid: $2,340.00 from USDC account
>

What Agents Can Do

Check Balances

Query real-time balances across all accounts and currencies instantly.

Send Payments

Initiate SEPA and SWIFT transfers programmatically with full control.

Currency Exchange

Convert between currencies at competitive rates with a single API call.

Manage Payroll

Automate salary payments to employees across multiple countries.

Transaction History

Access complete transaction records for reconciliation and reporting.

Account Management

Manage account settings, permissions, and security configurations.

How It Works

01

Get API Credentials

Sign up for a Brighty Business account and generate your API keys from the dashboard.

02

Install the Skill

Use our ready-made skill package or connect directly via the REST API to your agent framework.

03

Agent Goes Live

Your AI agent autonomously manages banking operations — payments, FX, reconciliation, and more.

Start in Minutes

Connect your AI agent to Brighty with a few lines of code. Use our REST API directly or install the skill for your agent framework.

skill-config.json skill
{
  "name": "brighty-banking",
  "version": "1.0.0",
  "capabilities": [
    "balance.read",
    "payments.create",
    "exchange.execute",
    "transactions.read"
  ],
  "auth": {
    "type": "api_key",
    "env": "BRIGHTY_API_KEY"
  }
}
API Request rest
# Create a SEPA payment
curl -X POST https://api.brighty.app/v1/payments \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "sepa",
    "amount": 500.00,
    "currency": "EUR",
    "recipient": {
      "iban": "DE89370400440532013000",
      "name": "Acme GmbH"
    },
    "reference": "INV-2025-042"
  }'

# Response
{
  "id": "pmt_a1b2c3d4",
  "status": "completed",
  "eta": "instant"
}

Why Automate with Agents

24/7 Operations

AI agents never sleep — your banking operations run around the clock without human intervention

Process payments, reconcile transactions, and manage cash flow at any hour

Always-on banking automation

Zero Human Error

Eliminate manual mistakes in financial operations with deterministic, auditable agent workflows

Every action is logged and traceable for full compliance

Reliable financial operations

Instant Execution

From decision to execution in milliseconds — no approvals queue, no waiting

React to market conditions and business needs in real time

Real-time financial responses

Use with your AI agent instantly

clawhub install brighty
  1. 1. Run the install command
  2. 2. Call setup: mcporter call brighty.brighty_setup apiKey=YOUR_KEY
  3. 3. Start using Brighty with your agent

Start building with Brighty API