Schema you can use later to populate the “Current/Real” panel with reported period inputs.
POST /ingest - accepts JSON matching the schema below.
{
"period": "2025-Q3",
"capital_trillions": 120.0,
"velocity": 8.0,
"credit_multiplier": 3.0,
"reserve_ratio_pct": 10.0,
"default_rate_pct": 1.5,
"fraud_bps": 4.0,
"latency_hours": 0.5,
"notes": "Consolidated from public filings and regulator datasets"
}
Your team posts these values. The site calculates and displays Real from this payload; the simulator stays editable for Ideal and Custom.
curl -X POST https://autobank.systems/ingest \
-H "Content-Type: application/json" \
-d '{
"period": "2025-Q3",
"capital_trillions": 120.0,
"velocity": 8.0,
"credit_multiplier": 3.0,
"reserve_ratio_pct": 10.0,
"default_rate_pct": 1.5,
"fraud_bps": 4.0,
"latency_hours": 0.5,
"notes": "Consolidated from public filings and regulator datasets"
}'