Connect Bimafy policy, quote and claim data to your stack — under authorization
Bimafy is the first online insurance marketplace in Bangladesh: users compare quotes from multiple carriers, buy health, motor, travel, life and commercial cover online, get the policy certificate delivered to their doorstep, and raise claims from an in-app claim portal with an assisted journey. That makes it a rich source of structured records — policy schedules, premium timelines, multi-insurer quote sets and claim-status events — that brokers, fintech apps, ERPs and compliance teams increasingly want to read through a clean API rather than scraping screens.
What we deliver
Engagements are scoped around the Bimafy data you actually need. A typical package combines an API specification, a protocol/auth report, runnable services and a compliance note. We support two commercial models: source-code delivery from $300, where you receive runnable code, OpenAPI docs and tests and pay after delivery on acceptance; or pay-per-call access to our hosted endpoints with usage-based billing and no upfront fee.
Deliverables checklist
- API specification (OpenAPI / Swagger) for login, policies, quotes and claims
- Protocol & auth flow report — OTP/phone login, bearer-token lifecycle, cookie/header chain
- Runnable source for policy export and claim-status APIs (Python / Node.js)
- Automated test suite, Postman collection and API reference documentation
- Compliance guidance — e-KYC handling, consent capture, retention and Insurance Act 2010 / IDRA alignment
Feature module — Account login API
Mirror the app's phone-number + OTP authorization, persist and refresh the session token, and expose a stable account_id. Concrete use: a broker back-office links a customer once and then pulls that customer's policy and claim data on a schedule without re-prompting for OTP each run.
Feature module — Policy & coverage API
Return every active and lapsed policy with carrier, product type, sum insured, start/end date, remaining duration and premium-due list. Concrete use: a corporate HR dashboard reconciles group-insurance certificates for employees against payroll deductions each month.
Feature module — Quote comparison API
Submit a cover request (e.g. private car, 1500cc, Dhaka) and receive the same ranked multi-insurer quotation set the app shows, with premium, add-ons and validity. Concrete use: an embedded-insurance widget on an e-commerce checkout calls this to display three live options instead of one hard-coded quote.
Feature module — Claim portal & status API
Create a claim, attach the required document checklist, and poll or subscribe to status transitions with timestamps and assisted-journey notes. Concrete use: a workshop management system shows the live motor-claim stage to a customer and triggers an SMS when "approved/settled" fires.
Feature module — Offers & renewal feed
Pull the partner-company discount feed and the per-user renewal queue (policies expiring in the next N days). Concrete use: a marketing automation tool builds a renewal campaign segment and appends a relevant partner discount to each message.
Data available for integration (OpenData perspective)
The table below maps the structured data Bimafy holds to the screen or feature it comes from, the granularity you can expect, and a typical downstream use. It is derived from the app's described features — compare, buy, manage and claim — and from public material about Bangladesh's digital-insurance direction. Exact fields are confirmed during scoping and only accessed under authorization.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| User profile & e-KYC summary | Onboarding / "personalize with your information" | Per user — name, phone, NID/e-KYC status, addresses | Identity matching, customer-360, prefilled forms |
| Policy & coverage records | "Manage your insurance products online" | Per policy — carrier, product, sum insured, term, remaining duration | Renewal reminders, portfolio dashboards, reconciliation |
| Premium & payment schedule | Policy detail / payment history | Per installment — amount, due date, paid/unpaid, channel | Cash-flow forecasting, accounting sync, dunning |
| Multi-insurer quotations | "Compare insurance online" flow | Per request — ranked list of carrier + premium + add-ons + validity | Price monitoring, recommendation engines, underwriting benchmarks |
| Claim records & status timeline | In-app claim portal / assisted journey | Per claim — type, amount claimed, stage, document checklist, timestamps | Claim-status webhooks, SLA & settlement reporting, audit |
| Policy documents | "Online insurance copy" / doorstep delivery | Per policy — PDF certificate, schedule, endorsements | Document vaults, KYC packs, compliance archives |
| Partner offers & discounts | "Get offers & discounts" feed | Per offer — partner, category, discount, eligibility, expiry | Cross-sell, loyalty engines, marketing automation |
| Product catalogue & updates | "Updated insurance solutions" content | Per product — type, carrier, key terms, region availability | Comparison sites, content sync, market research |
Typical integration scenarios
1. Embedded motor insurance at point of sale
Context: a vehicle dealer or helmet retailer wants to offer cover at checkout — mirroring the real LS2-Helmets-with-accident-cover style of partnership Bimafy has run with distributors. Data/API: the quote comparison endpoint (vehicle attributes in, ranked carrier quotes out) plus a purchase-handoff and a policy-document fetch. OpenInsurance mapping: the quote-and-bind flow is exposed as a consent-scoped product API, so the dealer's system never stores raw credentials — it holds only a token and the issued policy reference.
2. Corporate group-insurance reconciliation
Context: an HR/ERP team manages employee group health and life cover and must reconcile certificates, additions and removals each month. Data/API: account login (corporate account) → policy & coverage API filtered to group products → premium schedule → policy-document export. OpenInsurance mapping: a server-to-server read scope returns normalised policy and member objects that drop straight into the HRIS, replacing emailed spreadsheets.
3. Claim-status notifications for a workshop or hospital desk
Context: a motor workshop or hospital cashier wants to show the customer where their claim stands and act when it settles. Data/API: claim status API + webhook subscription on stage transitions (submitted, under_review, docs_requested, approved, settled). OpenInsurance mapping: event payloads carry only the claim id, stage and timestamp; the desk app resolves details with a follow-up authorized call — minimal data on the wire.
4. Renewal & cross-sell automation
Context: a marketing platform wants a "policies expiring in 30 days" segment plus a matching partner discount. Data/API: renewal queue endpoint + partner offers feed, joined on product category. OpenInsurance mapping: the renewal list is a derived, consent-bound view — no premiums or NID values leave Bimafy unless the customer's scope explicitly allows it.
5. Personal finance & insurance aggregation
Context: a money-management app in Bangladesh wants users' insurance alongside bank and bKash data for a full net-worth and protection view. Data/API: account login → policy list → premium schedule → claim history, all read-only. OpenInsurance mapping: this is the classic account-aggregation pattern from open finance, applied to the insurance leg — the user grants a scoped, revocable consent and the aggregator pulls a standard JSON contract.
Technical implementation
The snippets below are illustrative request/response shapes — endpoint names and fields are finalised after protocol analysis of the specific Bimafy build and confirmed against your authorization. They show three different surfaces (login, policy export, claim webhook) so you can see the auth model and error handling, not just one happy path.
1) Phone + OTP login and token refresh
// Step 1 — request OTP
POST /api/v1/bimafy/auth/otp/request
Content-Type: application/json
{ "phone": "+8801XXXXXXXXX" }
// Step 2 — verify and receive tokens
POST /api/v1/bimafy/auth/otp/verify
{ "phone": "+8801XXXXXXXXX", "otp": "123456" }
200 OK
{
"account_id": "acc_8f21c0",
"access_token": "eyJ...", // short-lived
"refresh_token": "rt_9be1...", // store securely
"expires_in": 1800
}
// Step 3 — refresh
POST /api/v1/bimafy/auth/token/refresh
{ "refresh_token": "rt_9be1..." }
401 -> { "error": "refresh_expired", "action": "re_authenticate" }
2) Export policies & premium schedule
# Python
import requests
H = {"Authorization": f"Bearer {ACCESS_TOKEN}"}
r = requests.get(
"https://api.example.com/v1/bimafy/policies",
headers=H,
params={"status": "active", "include": "premiums,documents"},
)
r.raise_for_status()
for p in r.json()["policies"]:
print(p["policy_no"], p["carrier"], p["product_type"],
p["sum_insured"], p["valid_to"], p["days_remaining"])
for due in p["premiums"]:
print(" ", due["due_date"], due["amount"], due["status"])
# 200 -> { "policies": [ { "policy_no": "...", "carrier": "...",
# "product_type": "health|motor|travel|life|commercial",
# "sum_insured": 500000, "valid_from": "2025-09-01",
# "valid_to": "2026-08-31", "days_remaining": 111,
# "premiums": [ { "due_date": "2026-03-01", "amount": 4200,
# "status": "paid|due|overdue" } ],
# "documents": [ { "type": "certificate", "url": "..." } ] } ] }
# 429 -> back off using Retry-After header
3) Claim creation + status webhook
// Create a claim
POST /api/v1/bimafy/claims
Authorization: Bearer <ACCESS_TOKEN>
{
"policy_no": "MTR-2026-00891",
"type": "motor_own_damage",
"incident_date": "2026-05-03",
"amount_claimed": 38000,
"description": "front bumper, headlamp"
}
201 -> { "claim_id": "clm_4a7d", "stage": "submitted",
"documents_required": ["fir","estimate","photos"] }
// Webhook delivered to your endpoint on each transition
POST https://your-app.example/webhooks/bimafy
X-Bimafy-Signature: sha256=...
{
"event": "claim.status_changed",
"claim_id": "clm_4a7d",
"stage": "approved", // submitted|under_review|docs_requested|approved|settled|rejected
"at": "2026-05-09T11:42:00+06:00"
}
// Verify X-Bimafy-Signature (HMAC) before trusting the payload;
// respond 2xx within 5s or it will be retried with backoff.
Compliance & privacy
Regulatory alignment
Insurance in Bangladesh is regulated by the Insurance Development and Regulatory Authority (IDRA) under the Insurance Act 2010 and the IDRA Act 2010. IDRA has rolled out a Unified Messaging Platform (UMP) with a policy repository, e-Receipt, e-KYC, e-Agent approval and a "Bima Tathya" policyholder app, and is moving toward centrally stored e-policies that carry the policyholder profile, policy terms, premium payment history and policy status. Any Bimafy integration we build is positioned to fit that direction — read-only where possible, consent-scoped, and auditable.
How we keep it lawful
- Access only under client authorization or documented public/authorized endpoints — no credential sharing in the clear.
- Explicit, revocable consent records per end user; data-minimisation on every payload (ids and stages over raw NID/premium values).
- Access logging, signed webhooks (HMAC), TLS in transit and encryption at rest; retention windows agreed in writing.
- Alignment with Bangladesh's emerging personal-data-protection rules and, for cross-border clients, GDPR-style controller/processor terms; NDAs on request.
- No reverse engineering of payment-card data or anything outside the agreed scope; clear escalation path if an endpoint changes.
Data flow / architecture
A typical Bimafy pipeline has four nodes: (1) Client/auth layer — the user (or corporate admin) completes phone+OTP login and grants a scoped consent; (2) Ingestion/API layer — our service mirrors the app protocol, exchanges and refreshes tokens, and exposes clean REST endpoints (policies, quotes, claims, offers); (3) Storage/normalisation — responses are mapped to stable schemas (policy, premium, claim, quote), de-duplicated and timestamped, with PII fields tokenised; (4) Output — your systems read via API or scheduled JSON/CSV exports, and subscribe to webhooks for claim and renewal events. Each hop is logged; consent revocation at node 1 immediately stops nodes 2–4.
Market positioning & user profile
Bimafy describes itself as the first insurtech platform in Bangladesh and reports cover for more than 400,000–450,000 people; it took early backing from Startup Bangladesh Limited (a BDT 1 crore investment in 2022) and has run distributor partnerships such as bundling free accident cover with LS2 helmets through Aziz Auto. Its users are predominantly retail consumers in Bangladesh buying motor, health, travel, life and accident cover on Android and iOS, plus SME and corporate buyers taking group-employee, fire, marine and industrial-all-risk products. For integration partners this means two audiences: B2C fintech and aggregator apps that want users' personal policies in a finance dashboard, and B2B brokers, ERPs, HRIS and workshops that need policy, premium and claim data flowing into existing back-office systems. The page you are reading targets exactly those teams searching for a Bimafy: Get Insurance & Claims API integration, insurtech data export or OpenInsurance claim-status feed.
Screenshots
App screens from Bimafy: Get Insurance & Claims. Click any thumbnail to view a larger version.
Similar apps & integration landscape
Bimafy sits inside a wider digital-insurance ecosystem. Teams that integrate one of these apps frequently end up wanting unified, normalised policy and claim exports across several of them — which is exactly the kind of cross-platform work we do. The list below is descriptive only; it is not a ranking.
- One by MetLife (formerly MetLife 360Health), Bangladesh — holds policy details, tele-doctor consultations, claims and wellness data for a large policyholder base; partners often need its claim status alongside Bimafy's.
- Guardian Life Insurance app, Bangladesh — life and health policy servicing, premium schedules and claim tracking; a common second source in a Bangladesh insurance dashboard.
- Pragati Life Insurance, Bangladesh — life policy records, premium payment history and surrender/maturity data that pair naturally with marketplace exports.
- Bima Tathya (IDRA Unified Messaging Platform app), Bangladesh — the regulator's policyholder app and policy repository; the reference point for e-policy and e-KYC data formats.
- PolicyBazaar, India — multi-insurer quotes, purchased policies and claim assistance; the canonical example of marketplace quote data many integrators already know.
- Turtlemint, India — auto, bike, health and term-life policies plus an advisor network; relevant when a partner spans both markets.
- Digit Insurance, India — motor, travel, health and gadget cover with API-led issuance and claims; often cited for self-service claim data.
- Acko, India — digital-native motor, health and embedded insurance; policy and claim objects similar in shape to a marketplace's.
- Bimaplan, India — affordable health and life micro-insurance distributed through partners; comparable micro-policy and premium-collection data.
- Sunday (Jolly super app), Thailand — full-stack insurtech with health policy management and hospital network data; a regional analogue for app-protocol integration work.
About us
We are an independent technical studio focused on app interface integration and authorized API integration for fintech and insurtech. Our engineers come from banks, payment gateways, insurers and protocol-analysis backgrounds; we ship end-to-end APIs under security and compliance constraints rather than throwing scripts over the wall.
- Insurance, payments, digital banking and cross-border data integration
- Protocol analysis, OAuth/token flows, mobile app interface reverse engineering (lawful, authorized)
- Custom Python / Node.js / Go SDKs, webhook infrastructure and test harnesses
- Full pipeline: protocol analysis → build → validation → compliance review → handover
- Source-code delivery from $300 — runnable API source plus full documentation; pay after delivery upon satisfaction
- Pay-per-call API billing — hosted endpoints, usage-based pricing, no upfront cost; ideal for teams that prefer to scale spend with volume
Contact
To request a quote or hand over your target app and requirements (data needed, regions, expected volume), open our contact page:
Tell us which Bimafy data you want — policies, multi-carrier quotes, claim status, premium schedules or partner offers — and your preferred model (source-code delivery or pay-per-call).
Engagement workflow
- Scope confirmation — which Bimafy data and which scenarios (login, policy export, quote comparison, claim status, offers).
- Protocol analysis & API design — 2–5 business days depending on complexity.
- Build & internal validation against a test account — 3–8 business days.
- Documentation, Postman collection and test cases — 1–2 business days.
- Handover and support window; third-party approvals or app changes may extend timelines. Typical first delivery: 5–15 business days.
FAQ
What do you need from me to start a Bimafy integration?
How long does delivery take?
How do you handle compliance and privacy?
Can you deliver runnable source code instead of a hosted API?
📱 Original app overview — Bimafy: Get Insurance & Claims (appendix)
Bimafy is an online insurance marketplace built for Bangladesh, designed to make insurance easier for everyone — buy, manage and find offers in one app. It is widely described as the country's first insurtech platform, has covered 400,000+ policyholders, and received early backing (BDT 1 crore in 2022) from Startup Bangladesh Limited.
- Compare insurance online in Bangladesh — find quotes from multiple companies for the cover you need and pick the most favourable offer for your preferences.
- Purchase insurance online — get instant quotations, fill in your details on a secured server, and receive your online insurance copy or doorstep delivery of the policy certificate; Bimafy promotes one of the fastest acquisition-and-delivery journeys in the industry.
- Manage your insurance products online — check coverage details and remaining duration to stay on top of your policies; claim faster from the in-app claim portal with an assisted journey and fast settlement support.
- Get offers & discounts — an ever-growing network of partner companies provides discounts on related services; example partnership: free accident insurance bundled with LS2 helmets via Aziz Auto.
- Updated insurance solutions — stay informed about the latest insurance advancements and policy options in Bangladesh.
- Product range — health, travel, accident, motor and life insurance for individuals, plus commercial lines such as marine (import/export), fire (factories, warehouses), industrial-all-risk and group insurance for employees.
- Platforms — Android (package
com.bimafy) and iOS; also available on the web at bimafy.com.
This page is an independent technical-integration resource. Bimafy is a product of its respective owner; references here illustrate how its data could be exposed through compliant, authorized API integration and OpenInsurance-style patterns.