Connect Pier policies, claims, and reimbursements to your stack — under SUSEP rules
Pier is a SUSEP-authorized digital insurer in Brazil that closed 2024 with revenue above R$150 million and more than 100,000 policyholders for its smartphone product. We deliver protocol analysis and runnable APIs that let your back office query Pier policies, vehicle and device coverage, claim lifecycles, and the Pier Bolt instant-reimbursement events that the company uses to settle 30% of mobile claims in under a second.
What we deliver
Deliverables checklist
- OpenAPI 3.1 specification mapped to OPIN resource models
- Protocol and authorization flow report (token, refresh, certificate pinning)
- Runnable source for policy, claim, and reimbursement APIs (Python & Node.js)
- Postman / Insomnia collections plus pytest / Jest test harnesses
- LGPD & SUSEP compliance notes (consent, retention, data-minimization)
- Operations runbook: rate limits, retries, idempotency keys, error taxonomy
Engagement options
- Source-code delivery from $300 — runnable code and full docs handed over; you pay only after acceptance.
- Pay-per-call hosted API — we operate the integration and bill per successful call, with no upfront fee.
- Hybrid — start with hosted endpoints, migrate to in-house deployment once volume stabilizes.
Data available for integration
Pier’s mobile experience surfaces a focused but rich set of records. The table below maps each record back to the in-app screen where it appears, the granularity at which it can be retrieved, and the typical downstream use. Field names follow our internal data model and align where possible with OpenInsurance Brasil resource definitions for policies (seguro-auto, responsabilidade-civil, residencial) and claims.
| Data type | Source (in-app) | Granularity | Typical use |
|---|---|---|---|
| Policy metadata | “Minha apólice” tab | Per policy: number, product, status, start/end dates, monthly premium | Renewal pipelines, churn analytics, broker dashboards |
| Smartphone coverage | Device enrolment screen | IMEI, model (Samsung / iPhone), purchase value, deductible | Carrier / retailer co-marketing, embedded warranty checks |
| Auto coverage | Veículo screen | FIPE code, plate, year, add-ons (glass, mirrors, rental car) | Telematics, fleet integration, leasing risk control |
| Claim lifecycle | “Sinistros” / claim wizard | Claim ID, status, photos, timestamps, geolocation | Loss-ratio dashboards, fraud signals, regulator reporting |
| Pier Bolt reimbursements | Bolt instant-payout flow | Event-level: amount, PIX key, latency, decision reason | Cash-flow forecasting, ML retraining, customer comms |
| Premium & payment history | Pagamentos screen | Per charge: date, method, status, invoice URL | Accounting sync, dunning, accounting close, churn warning |
| Customer profile | Conta tab | Name, CPF (hashed), email, address, KYC level | Identity reconciliation across broker partners |
Typical integration scenarios
1. Broker-channel policy sync
Pier expanded into the broker channel in 2024 and now works with partners such as SegPartners, Klubi and Cota Fácil, with more than 1,500 broker partners registered. A nightly job pulls /policies?updatedSince=… and pushes new and renewed contracts into the broker’s CRM, mapping Pier’s product codes to the broker’s internal commission table.
2. Pier Bolt reimbursement webhook
Pier Bolt settles 30% of smartphone claims in under one second. A webhook subscriber receives claim.reimbursement.completed events, posts the corresponding ledger entries to the carrier’s ERP, and triggers a CSAT survey via the marketing automation tool — all within the same idempotent request flow.
3. OPIN data-portability flow
When a Pier customer authorizes a competing insurer to import their loss history, the consent is granted in the receiver’s app, transported through the OPIN directory, and resolved against Pier’s resource server. Our integration handles the FAPI Brasil security profile, dynamic client registration, and the standard damages and person APIs.
4. Embedded auto insurance at point of sale
A car dealer in Belo Horizonte offers Pier auto insurance at signing. Our SDK calls a quote endpoint with the FIPE code and proposed coverage, surfaces the monthly premium, and posts the signed proposal back to Pier. The contract appears in the customer’s app within minutes, ready for inspection booking.
5. Loss-ratio analytics for reinsurance
A reinsurance partner consumes anonymized claim and premium streams to compute book-level loss ratios per device model and FIPE category. The pipeline runs on hourly windows, joins Pier data with NPS feedback, and powers the underwriting team’s pricing review.
Technical implementation
Authorization handshake
POST /api/v1/pier/auth/token
Content-Type: application/json
{
"grant_type": "password",
"username": "user@example.com",
"device_id": "a1b2c3-...-e5f6",
"scope": "policies claims reimbursements"
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_3d4f...",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "policies claims reimbursements"
}
Policy & claim retrieval
GET /api/v1/pier/policies?status=active&product=auto
Authorization: Bearer <ACCESS_TOKEN>
X-Idempotency-Key: 7b14...
200 OK
{
"items": [{
"policy_id": "POL-882134",
"product": "auto",
"vehicle": {"fipe": "004128-7", "plate": "ABC1D23"},
"premium_brl": 189.90,
"status": "active",
"addons": ["glass", "mirrors", "rental_car"],
"started_at": "2026-02-14T00:00:00-03:00"
}],
"next_cursor": null
}
Pier Bolt reimbursement webhook
POST https://yourapp.example.com/webhooks/pier
X-Pier-Signature: t=1714..., v1=8c3...
{
"event": "claim.reimbursement.completed",
"claim_id": "CLM-552310",
"policy_id": "POL-114209",
"amount_brl": 2899.00,
"settlement_method": "PIX",
"latency_ms": 870,
"occurred_at": "2026-05-07T14:32:11Z"
}
// Verify HMAC, ack with 200 within 5s,
// or Pier retries with exponential backoff.
Error taxonomy & retries
All endpoints return RFC 7807 problem documents. Transient failures (HTTP 502/503/504, plus rate-limit 429) are retried with jittered exponential backoff up to five attempts; 4xx validation errors short-circuit and surface a machine-readable code. Idempotency keys prevent duplicate writes when a network blip splits a request.
Compliance & privacy
SUSEP, OPIN, and LGPD
Pier was the first insurtech to graduate from the SUSEP regulatory sandbox and now operates as a full digital insurer. Our integrations therefore align with the OpenInsurance Brasil (OPIN) framework coordinated by SUSEP, including the FAPI Brasil security profile, dynamic client registration, and the standard consent lifecycle. On the privacy side, we follow LGPD (Lei Geral de Proteção de Dados) for data minimization, retention, and right-to-erasure flows, and we never persist plain-text CPFs or claim photos outside the customer’s tenant.
Authorization & auditability
Every call is mediated by an authorization scope, a per-tenant API key, and a signed audit log. Reimbursement and policy-mutation calls require a fresh user token (re-authentication if the access token is older than 15 minutes), and webhooks are signed with rotating HMAC secrets so downstream systems can prove provenance during a SUSEP inspection.
Data flow / architecture
A typical deployment moves data along four nodes: Pier mobile app & backend → Integration gateway (our service: token brokering, schema mapping, OPIN consent translation) → Storage (encrypted at rest, partitioned by tenant) → Analytics & downstream APIs (CRM, ERP, BI, reinsurance feeds). Each node enforces a different responsibility, so a compromise of one layer does not leak production credentials of another. Webhook traffic flows in the opposite direction with the same gateway acting as a signature verifier and idempotent dispatcher.
Market positioning & user profile
Pier is a B2C-led Brazilian insurtech with a growing B2B2C broker channel. Its primary users are urban smartphone owners (especially Samsung and iPhone customers) and car owners, with the auto product historically anchored in Belo Horizonte and now expanding nationwide through broker partnerships announced in 2024. The platform is available on Android and iOS only — there is no full web product — which is why a mobile-first protocol analysis is the natural starting point for any integration. Pier was named the best digital insurer in Latin America and is the only Brazilian company in the global Sønr Top 100 insurtech list, signaling that the integration audience extends beyond Brazil to LATAM partners benchmarking the model.
App screenshots
Screens that surface the data referenced above. Click any thumbnail to enlarge.
Similar apps & integration landscape
Teams that integrate Pier often work alongside other Brazilian insurtechs and digital insurance platforms. The apps below appear in the same buyer journeys; a unified integration surface across them lets brokers, accountants, and ERP vendors normalize policy and claim data regardless of which carrier the end customer chose.
About us
OpenFinance Lab is an independent studio focused on fintech, insurtech, and open-data API integration. Our engineers come from banks, payment networks, mobile reverse engineering, and cloud platforms, and we have shipped insurance integrations under SUSEP, OPIN, FAPI Brasil, LGPD, and equivalent rules in Mexico, Spain, and the UK.
- Insurance, payments, digital banking, and cross-border clearing
- Mobile protocol analysis on Android and iOS, including certificate pinning and obfuscated SDKs
- Custom Python, Node.js, and Go SDKs with full test harnesses
- End-to-end pipeline: scoping → protocol analysis → build → validation → compliance review
- Source-code delivery from $300 — runnable code with documentation; pay only after acceptance
- Pay-per-call hosted API — usage-based billing, no upfront commitment
Contact
For quotes or to submit your target app and requirements, open our contact page:
Engagement workflow
- Scope confirmation — which products (smartphone, auto), which flows (policy, claim, reimbursement), and which side of OPIN.
- Protocol analysis & API design (2–5 business days)
- Build and internal validation against sandbox or recorded fixtures (3–8 business days)
- Documentation, sample requests, and pytest / Jest tests (1–2 business days)
- Typical first delivery: 5–15 business days; OPIN certification adds 1–2 weeks.
FAQ
What do you need from me to start a Pier integration?
digital.pier), the integration scope (policy listing, claim status, reimbursement webhooks, premium history), and any sandbox or partner-portal credentials you already hold. If you are an OPIN-accredited transmitter, share your software statement and certificates.How long does a typical Pier integration take?
How do you stay compliant with SUSEP and OPIN rules?
Can you cover both smartphone and auto insurance flows?
📱 Original app overview (appendix)
Pier (digital.pier) markets itself as a community-style digital insurer, framing customers as friends and emphasizing simplicity over paperwork. The app currently covers Samsung and iPhone smartphones nationwide and cars for users based in Belo Horizonte, with active expansion of its auto product through the broker channel announced in 2024.
The original product description highlights three threads: (1) a friendly, community-led tone (“come and be part of our community”), (2) a clear coverage scope check before download (cell-phone model and city for the car product), and (3) a direct support contact at contato@pier.digital. The company exited the SUSEP regulatory sandbox in 2022 and now operates with a permanent license, closing 2024 with revenue above R$150 million and more than 100,000 smartphone policyholders.
- Smartphone insurance with Pier Bolt instant reimbursement (sub-second settlement on 30% of claims)
- Auto insurance with theft / robbery, partial damage, total loss, third-party, and 24h roadside assistance
- Add-ons for glass, headlights, side mirrors, and rental cars (in more than half of new auto contracts)
- Annual smartphone coverage launched in 2024, lifting new-customer conversion by 16%
- Broker partnerships with SegPartners, Klubi, Touareg, É Seguro, Cota Fácil, and Vila Velha
- Selected as best digital insurer in Latin America; only Brazilian company in the global Sønr Top 100 insurtech list