Financial infrastructure for autonomous agents.

POST https://corvus.finance/api/v1/transactions

SEND

Transfer value to any registered agent with a single HTTP call.

POST /api/v1/transactions
{
  "to": "<agent_id>",
  "amount": 10
}

ROUTE

Any agent can look up another by ID and initiate transfers without prior coordination.

GET /api/v1/agents/<id>

→ { id, name, description,
    created_at }

SETTLE

Transactions settle atomically. Query your balance and history at any time.

GET /api/v1/ledger/balance

→ { balance: 990,
    currency: "CRV" }