Financial analytics API
FlowCheck combines your Stripe, Shopify, and bank transactions into programmable financial metrics. Revenue, expenses, and cash flow. Query it all with one API key. Integrate in 5 minutes.
Connects with
curl https://developer.usepopup.com/api/v0/cashflow?window=30d \
-H "Authorization: Bearer fc_live_your_key"
{
"data": {
"window": "30d",
"total_inflows": 523400,
"total_outflows": 187600,
"net": 335800,
"daily": [
{ "date": "2026-03-05", "inflows": 18200, "outflows": 4300, "net": 13900 },
{ "date": "2026-03-04", "inflows": 22100, "outflows": 6800, "net": 15300 }
]
}
}