Products
insightsIncluded with /v1/parse
Swippee Transactions
Every transaction, categorized.
The full transaction list with our rule-based categorization (salary, EMI, wallet, utility, transfer, etc.). Filter by category, direction, date range. Up to 1000 per call.
Method
GET
Endpoint
/v1/reports/:id/transactions
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
- Every transaction with normalized debit / credit / balance
- Rule-based categories: salary, loan_repayment, utility, wallet, merchant_payment, refund, remittance, cash_withdrawal, transfer, investment, interest, tax, fee, other
- Filter by ?category, ?direction (credit|debit), ?since, ?until, ?limit
Built for
- Personal finance apps
- Accounting automation
- CA firm workflows
Request
curl 'https://api.swippee.com/v1/reports/cl_abc123/transactions?direction=credit&since=2026-03-01' \
-H "Authorization: Bearer $SWIPPEE_API_KEY"Response
{
"count": 12,
"transactions": [
{
"id": "txn_0001",
"date": "2026-03-25",
"description": "SALARY EXAMPLE TECHNOLOGIES",
"debit": null,
"credit": 72000,
"balance": 145200,
"category": "salary",
"confidence": 0.95
}
]
}