10 products · 1 API
One parse becomes the full financial-data product suite.
Send a bank statement once to /v1/parse, then pull the exact product your workflow needs: reports, income, identity, liabilities, score, verification, transactions, and enrichment.
10
products
1
parse bill
5
banks live
POST /v1/parse
-> report_id
-> /income · /score · /verify · /transactions
Parse onceFetch any productBill by workflow, not endpoint
Beyond per-parse — Swippee Data
Nepal's public financial data, as a REST API.
NRB publishes 20+ datasets — forex, banking, macro, payments — as PDFs nobody can parse. We do the parsing. Same API key, same dashboard. Sandbox includes 500 calls/month.
GET /v1/data/nrb/forex/latest
{
"data": [ …22 currencies… ],
"meta": {
"source": "Nepal Rastra Bank",
"as_of": "2026-05-28"
}
}
Credit & underwriting
Decision-ready reports, income, liabilities, score, and verification.
Identity & verification
Confirm ownership and flag statements that need human review.
Financial insights
Balances, transactions, categories, and enrichment from raw data.
Infrastructure
Drop the collection flow into your product.
Developer proof
The product family is shaped around what your app fetches.
Keep collection, parsing, scoring, and review cleanly separated. That makes pricing clearer and implementation easier to reason about.
const report = await swippee.parse(statement)
const [income, score, verify] = await Promise.all([
swippee.reports.income(report.id),
swippee.reports.score(report.id),
swippee.reports.verify(report.id)
])