Products
insightsIncluded with /v1/parse
Swippee Balance
Opening, closing, average, trend.
Quick balance view: opening, closing, average daily balance across the period, and whether the trend is growing/stable/declining. Useful for minimum-balance checks and credit-line decisions.
Method
GET
Endpoint
/v1/reports/:id/balance
Billing
Included
Quick action
POST /v1/parse then fetch this endpoint
Primary intent
Evaluate applicants faster with structured output
Compliance
Trace decisions to report IDs and signed events
One parse, many views
Fetch this product from the same report ID without re-uploading the customer statement.
Developer shaped
Stable JSON, explicit fields, predictable billing, and examples that map directly to the docs.
Audit friendly
The output keeps the decision signal and the source report tied together for review.
What you get
- Stated opening + closing balance
- Average balance computed from every transaction's running balance
- Trend classification: growing / stable / declining
Built for
- Credit line sizing
- Minimum-balance verification
- Mortgage pre-qualification
Request
curl https://api.swippee.com/v1/reports/cl_abc123/balance \
-H "Authorization: Bearer $SWIPPEE_API_KEY"Response
{
"currency": "NPR",
"period": { "from": "2025-11-01", "to": "2026-04-30" },
"opening_balance": 5028.73,
"closing_balance": 5062.93,
"avg_daily_balance": 12450.30,
"trend": "growing"
}