/v1/cash-positionsCurrent cash position across all entities
{
"total": 4827950.42,
"currency": "EUR",
"entities": 7,
"as_of": "2026-05-04T08:00:00Z"
}REST API and webhooks for cash positions, decisions, anomalies, and forecasts. Available on Scale and Enterprise plans.
Simple JSON over HTTPS
Real-time event delivery
OAuth 2.0 + scoped API keys
Authenticate every request by including your secret API key in the Authorization header as a Bearer token. Keys are scoped per workspace and can be rotated at any time from the dashboard. Use sk_test_* keys for sandbox and sk_live_* keys for production.
curl https://api.arxaintelligence.com/v1/cash-positions \ -H "Authorization: Bearer sk_live_..." \ -H "Accept: application/json"
A small selection of the most common endpoints. Full reference, parameters, error codes, and pagination details are available in the complete documentation.
/v1/cash-positionsCurrent cash position across all entities
{
"total": 4827950.42,
"currency": "EUR",
"entities": 7,
"as_of": "2026-05-04T08:00:00Z"
}/v1/cash-positions/forecast?weeks=1313-week rolling forecast
{
"horizon_weeks": 13,
"low_point": { "week": 6, "amount": 1820000 },
"confidence": 0.92
}/v1/decisionsAI-generated decisions for the day
{
"data": [
{ "id": "dec_01J", "type": "sweep", "amount": 250000, "priority": "high" },
{ "id": "dec_02K", "type": "fx_hedge", "amount": 80000, "priority": "medium" }
]
}/v1/decisions/:id/approveApprove a decision and execute it
{
"id": "dec_01J",
"status": "approved",
"executed_at": "2026-05-04T09:14:22Z"
}/v1/anomalies?status=activeActive payment anomalies
{
"data": [
{ "id": "anm_88Z", "score": 0.94, "reason": "vendor_mismatch", "amount": 12400 }
]
}/v1/transactions?from=2026-01-01Transaction history
{
"data": [
{ "id": "txn_5821", "date": "2026-04-30", "amount": -4820.55, "counterparty": "AWS" }
],
"next_cursor": "eyJwYWdlIjoyfQ"
}Subscribe to events to receive a signed HTTPS POST request the moment something happens. Each delivery is retried with exponential backoff for up to 24 hours.
transaction.created·New bank transaction syncedanomaly.detected·Suspicious payment flaggeddecision.generated·New AI decision availablepayment.scheduled·Payment scheduled for executionsubscription.updated·Plan or status changed{
"id": "evt_01HZX9KQ2P",
"type": "anomaly.detected",
"created_at": "2026-05-04T10:22:18Z",
"data": {
"anomaly_id": "anm_88Z",
"score": 0.94,
"amount": 12400,
"currency": "EUR",
"reason": "vendor_mismatch"
}
}Full API documentation, OpenAPI spec, SDKs (Python, Node.js, Go), and 99.9% SLA are available on Scale and Enterprise plans.
Generous throughput for production workloads, with burst tolerance.
High-volume access for finance teams operating across many entities.
Contractual availability with dedicated support and incident response.