Uber Pro Card (Canada) API integration & Payfare data services

OpenFinance-aligned protocol analysis, earnings statement APIs, cashback ledger sync and compliant source code delivery for gig-economy fintech

From $300 · Pay-per-call hosted API available
OpenFinance · OpenData · Payfare protocol analysis · Canadian gig fintech

Turn Uber Pro Card driver and courier transactions into a structured, queryable data layer

The Uber Pro Card — issued by Peoples Trust Company under license from Mastercard and powered by Payfare — sits at the intersection of instant payouts, cashback rewards and the Driver app. We help accounting platforms, tax software vendors, fleet managers and gig-economy fintechs reach that data through authorized, PIPEDA-aligned integrations rather than fragile UI scraping.

Earnings & payout ledger — Per-trip credit events from Uber's instant cashout flow, normalized into a transaction stream you can post to QuickBooks, Wave or a custom ERP.
Cashback & status tracking — Up to 4% gas / 8% EV charging rebates resolved by Mastercard MCC, settlement timestamp and Uber Pro tier (Diamond, Platinum, Gold, Blue).
Backup Balance & ATM events — The $50 short-term advance facility and Canadian ATM withdrawals exposed as discrete event types for liquidity dashboards.

What this app actually contains (feature modules)

Each module below names a concrete data surface inside Uber Pro Card and a real downstream use. We do not ship a generic "wrapper"; every endpoint we deliver maps to a screen or background sync the driver already touches every day.

1. Instant cashout transaction feed

Each completed trip and Uber Eats delivery produces a credit on the card account. We expose this as a paginated stream with trip_uuid, gross fare, driver share, surge component and credit timestamp — perfect for nightly reconciliation against Uber's weekly Driver Dashboard statements.

2. Statement & export endpoint

Mirrors the Statements tab of the Driver Dashboard (the official PDF/CSV available at uber.com/earningsstatements). Returns JSON, CSV or Excel for any week or custom date range, including promotions, tips and adjustments separated from base fare.

3. Cashback rebate webhook

Pay-at-the-pump fuel and public EV charging trigger a rebate that settles a few days after the original purchase. We deliver a webhook payload pairing the original purchase, MCC, status tier and the eventual rebate credit so dashboards never double-count earnings.

4. Backup Balance & ATM event log

The $50 advance line, repayments and ATM withdrawals across Canada are surfaced as typed events (advance_drawn, advance_repaid, atm_withdrawal) — useful for liquidity scoring and the financial-wellness modules many gig platforms now ship.

5. Account & KYC state

Card status (active, frozen, replaced), Google Wallet enrollment, and the user's CDIC-eligible balance — all read through the authorized session the cardholder grants. No silent credential storage.

6. Mastercard Easy Savings rebate sync

The card includes Mastercard's Easy Savings small-business rebate program. We map merchant offers and posted rebates so they appear in the right tax category for a self-employed driver come T2125 season.

Data available for integration

Below is the structured data inventory we typically expose. Granularity reflects what is actually available inside the Payfare-powered Uber Pro Card app today — we do not promise fields the issuer does not surface to the cardholder.

Data typeSource screen / featureGranularityTypical use
Trip-level payoutHome / Earnings tabPer trip, with timestamp + amountDaily reconciliation, mileage-to-revenue ratios
Weekly statementStatements / Driver DashboardISO week, fares + tips + promos + adjustmentsT4A/T2125 tax filing, accountant hand-off
Card transactionsCard activity feedPer swipe, MCC, merchant, amount, currencyExpense categorization, fuel-tax recovery
Cashback rebatesRewards sectionPer qualifying purchase, posted as separate creditReward analytics, status-tier optimization
Backup Balance ledgerBackup Balance featureDrawdown, repayment, eligibility flagLiquidity scoring, BNPL underwriting signals
ATM withdrawalsCard activity feedPer event, ATM operator, fee, locationCash-flow forecasting, fraud monitoring
Status & tierUber Pro tier indicatorDiamond / Platinum / Gold / Blue snapshotConditional rebate maths, segment analytics
Profile & KYCAccount / SettingsCardholder identity, address, card stateOnboarding sync, compliance audit trail

Typical integration scenarios

A. Tax-prep platform pulling weekly statements

Context: A Canadian tax-prep SaaS wants to auto-populate self-employment income for Uber drivers without asking them to upload PDFs.
Data & APIs: Statement endpoint (weekly), trip-level payout feed, Mastercard transaction list for deductible expenses (gas, EV charging, vehicle maintenance).
OpenData mapping: Aligns with the Consumer-Driven Banking Act's data-portability intent — the cardholder authorizes export of "specified personal information" to an accredited recipient.

B. Multi-platform earnings dashboard

Context: A gig-worker app aggregates earnings across Uber, DoorDash, Instacart and Amazon Flex into a single net-pay-per-hour view.
Data & APIs: Real-time payout webhook from the Uber Pro Card, paired with the user's tracked online time from the Driver app.
OpenFinance mapping: A read-only consent flow analogous to the UK FCA's account-information service provider model, adapted to Canada's CDBA framework.

C. Fleet manager & rental partner reporting

Context: A vehicle-rental partner who leases EVs to Uber drivers needs to verify weekly earnings to calculate revenue-share rent.
Data & APIs: Aggregated weekly fares, EV-charging cashback events, and Backup Balance utilization to flag at-risk drivers.
OpenData mapping: Cardholder grants scoped, time-bounded access; the fleet partner never receives full card credentials.

D. Cash-advance & underwriting product

Context: A regulated lender wants to pre-qualify a driver for a working-capital advance using verified Uber payout history rather than self-reported income.
Data & APIs: 12 weeks of statement history, Backup Balance utilization, ATM withdrawal density, status tier.
OpenFinance mapping: Mirrors the "income verification" use case heavily discussed in the Department of Finance's Budget 2025 open-banking consultation.

E. Driver-side personal finance coach

Context: A consumer fintech offers gig-specific budgeting and tax-set-aside automation.
Data & APIs: Daily transaction feed, cashback ledger, status-tier change events to recompute the user's effective net rate.
OpenData mapping: Uses PIPEDA's incoming data-mobility right to let the user freely move their card-derived data to a chosen advisor app.

Technical implementation & deliverables

Auth: authorized session bootstrap

POST /api/v1/uberpro-ca/session
Content-Type: application/json
Authorization: Bearer <PARTNER_TOKEN>

{
  "cardholder_consent_id": "ccnt_8f2…",
  "device_fingerprint": "android-aab-…",
  "scopes": ["transactions.read",
             "statements.read",
             "rewards.read"]
}

200 OK
{
  "session_id": "sess_01HF…",
  "expires_in": 3600,
  "refresh_token": "rt_…",
  "kyc_state": "verified"
}

Statement query (mirrors Driver Dashboard)

POST /api/v1/uberpro-ca/statements
Authorization: Bearer <SESSION_TOKEN>

{
  "from_date": "2026-04-07",
  "to_date":   "2026-04-13",
  "format":    "json",
  "include":   ["fares","tips","promos",
                "adjustments","cashback"]
}

200 OK
{
  "period_iso_week": "2026-W15",
  "currency": "CAD",
  "gross_earnings": 1284.55,
  "trip_count": 87,
  "cashback_total": 12.40,
  "items": [ … ]
}

Transaction & cashback webhook

POST https://your-app.example/hooks/uberpro
X-Signature: sha256=…
Content-Type: application/json

{
  "event": "card.transaction.posted",
  "id": "txn_01HF…",
  "card_last4": "4421",
  "merchant": "PETRO-CANADA #4128",
  "mcc": "5541",
  "amount":  -64.20,
  "currency": "CAD",
  "posted_at": "2026-04-22T18:11:04Z",
  "rebate_pending": {
    "rate_pct": 4.0,
    "tier": "Diamond",
    "estimated_credit": 2.57
  }
}

Deliverables checklist

  • OpenAPI 3.1 spec covering session, statements, transactions, cashback and Backup Balance
  • Reference Python and Node.js SDKs (async, retry, signed-webhook verification)
  • Protocol analysis report: OAuth-style consent, refresh chain, certificate pinning observations
  • Postman / Bruno collection plus a recorded happy-path test set
  • Compliance brief: PIPEDA data-mobility alignment, CDBA readiness notes, retention schedule template
  • Two engagement models: source-code delivery from $300, or pay-per-call on our hosted endpoint

Compliance & privacy

Canadian context matters: the Personal Information Protection and Electronic Documents Act (PIPEDA) governs cardholder data, and the new Consumer-Driven Banking Act (CDBA) — given Royal Assent in March 2026 — sets the scaffolding for accredited data-mobility recipients. We design every integration to fit that framework: explicit per-scope consent, a revocation endpoint, structured audit logs, data minimization (we never request fields a downstream use case cannot justify), and CDIC disclosure language preserved end-to-end so cardholders still understand that funds sit at Peoples Trust Company. For Mastercard Easy Savings rebates we honour Mastercard scheme rules on merchant categorization. Where a partner operates outside Canada, we add a regional addendum (e.g. EU GDPR Art. 28 processor terms) rather than forcing a one-size-fits-all DPA.

Data flow & reference architecture

A typical pipeline looks like: Uber Pro Card app (Payfare backend)authorized ingestion service (consent token, mTLS, request signing) → normalization layer (canonical event schema, currency in CAD, MCC enrichment) → storage (append-only ledger + late-arriving rebate matcher) → downstream API or webhook fan-out to the partner's accounting, lending or analytics product. Reconciliation jobs cross-check the trip-level credit feed against the official weekly Driver Dashboard statement so any drift is surfaced within 24 hours.

Market positioning & user profile

The Uber Pro Card is a B2B2C instrument: Uber and Payfare distribute it, but the cardholder is an individual driver or Uber Eats courier in Canada. Primary regions today are Ontario, Quebec, British Columbia and Alberta, with the rollout following the existing Driver app footprint. The user base skews mobile-first (Android dominant for gig drivers, with iOS strong in major metros) and tends to combine the card with Uber's mileage and tax exports plus third-party trackers. That makes integrations valuable to accountants, tax-prep platforms, gig-worker neobanks, EV-fleet partners, and Canadian lenders building income-verified working-capital products.

App screenshots

Click any thumbnail to view the full-resolution image. Source: Google Play listing for the Uber Pro Card - Canada app (com.payfare.uberpro).

Uber Pro Card screenshot 1
Uber Pro Card screenshot 2
Uber Pro Card screenshot 3
Uber Pro Card screenshot 4

Similar apps & integration landscape

Drivers and couriers rarely live in a single ecosystem. The card sits beside several adjacent products, and unified data exports are usually the real ask. A few neighbours we are commonly asked to integrate alongside the Uber Pro Card:

DasherDirect (DoorDash) — A Visa business prepaid card issued via Stride Bank with daily payouts and 2% fuel cashback. Cross-platform Dashers often want a unified weekly statement next to their Uber Pro Card data.
Lyft Direct — Mastercard-rails debit card for Lyft drivers with 1% base cashback plus bonus categories; integration partners typically merge it with Uber payouts for net-rate analytics.
Instacart Card — Shopper-facing payment card and instant-cashout flow; useful when grocery shoppers also drive for Uber Eats and need a single income view.
Amazon Flex Debit Card — Issued by Bank of America for Flex package delivery drivers; commonly aggregated alongside Uber Pro Card transactions for last-mile gig analytics.
Branch — Workforce payments app offering gig-friendly accounts and instant pay APIs; partners building gig-economy lending often correlate Branch flows with Uber Pro Card history.
Moves Financial — Canadian financial app built specifically for gig workers; a frequent companion to the Uber Pro Card for tax-set-aside and earnings dashboards.
Hurdlr — Income, mileage and expense tracker that links to over 20,000 banks and to Uber/Lyft; ideal downstream for a normalized Uber Pro Card transaction feed.
Everlance — Mileage and expense tracking platform with downloadable Excel/PDF reports; consumes Uber Pro Card statements to auto-categorize fuel and EV charging.
Stride — Free mileage tracker with health-insurance and tax tools; gig drivers using both Stride and the Uber Pro Card typically want a single year-end export.
Gridwise — Multi-platform driver assistant covering rideshare and delivery; integration projects pair Gridwise's location data with Uber Pro Card payout timing.
Solo App — Auto-classifies trips across linked gig-work accounts; benefits directly from a clean Uber Pro Card credit feed.
Wingspan — Payroll, benefits and tax platform for self-employed workers, with its own Wallet debit card; integrates well alongside Uber Pro Card data for full self-employment accounting.

About our studio

We are an independent technical studio focused on App interface integration and authorized API delivery. Our engineers come from card-issuing platforms, gig-economy back ends, and Canadian fintech compliance teams. We have shipped integrations against issuer processors, OpenFinance aggregators, and direct mobile-app protocols, with a strong bias toward consent-driven, audit-friendly designs.

  • Financial / banking apps — transaction records, statements, payment rails
  • E-commerce, food-delivery and retail — orders, payments, sync
  • Hotel, travel and mobility — bookings, itinerary, payment verification
  • Social, OTT and dating — auth/login, messaging, profile
  • Two engagement models: source code from $300 (pay after delivery), or pay-per-call hosted API

Contact

Tell us the target app (Uber Pro Card - Canada in this case) and the specific data surfaces you need — statements, transactions, cashback, Backup Balance — and we will scope a delivery within one business day.

Open contact page

NDA available on request. Sandbox / staging credentials accepted.

Engagement workflow

  1. Scope confirmation — which Uber Pro Card data surfaces (payouts, statements, cashback, Backup Balance, ATM events).
  2. Protocol analysis & API design — 2–5 business days, including consent & refresh-token flow.
  3. Build & internal validation — 3–8 business days, with happy-path and error-path coverage.
  4. Documentation, sample SDK, signed webhooks and recorded test cases — 1–2 business days.
  5. Typical first delivery in 5–15 business days; CDIC / PIPEDA reviews on the partner side may extend the timeline.

FAQ

What do you need from me?

The target app (Uber Pro Card - Canada), the data fields you actually need, and any partner credentials or sandbox access you already hold.

How long does delivery take?

Typically 5–12 business days for a first API drop and docs; pipelines that include reconciliation against the weekly Driver Dashboard statement can take a bit longer.

How is Canadian compliance handled?

We design under PIPEDA, follow the data-mobility direction set by the new Consumer-Driven Banking Act, and preserve issuer disclosures (Peoples Trust Company / CDIC) end-to-end.

Do you do detection bypass?

No. We only operate on cardholder-authorized or documented public surfaces and decline work that requires evading legitimate security controls.
Original app overview (Uber Pro Card - Canada — full description, collapsed)

The Uber Pro Card is a business prepaid Mastercard powered by Payfare, designed exclusively for drivers and couriers who use the Uber Driver app in Canada. It can be used anywhere Mastercard is accepted, and earnings are deposited automatically after every trip at no additional charge.

Cardholders can earn up to 4% cash back on gas at the pump and up to 8% cash back on public EV charging with Diamond status; the base benefit ranges from 1–4% on gas and 2–8% on EV charging depending on Uber Pro tier. A Backup Balance feature lets eligible cardholders access up to $50 when cash is low (terms and eligibility apply). The card can be added to Google Wallet for contactless purchases and used for cash withdrawals at select ATMs across Canada. Drivers apply for the card directly through the Uber Driver app.

The Uber Pro Card is issued by Peoples Trust Company under licence from Mastercard International Incorporated. Funds loaded onto the card are held by the issuer Peoples Trust Company, a member institution of the Canada Deposit Insurance Corporation (CDIC), and are eligible for CDIC coverage. Uber and Payfare are not CDIC member institutions. Funds loaded onto the card are combined with eligible deposits held under Peoples Trust Company for up to CAD 100,000 of deposit protection per insured category, per depositor. For more information about CDIC deposit insurance, see cdic.ca and the official CDIC brochure.

Rewards are subject to change without notice and terms and conditions apply. Gas and public EV-charging merchant classification follow Mastercard rules; cash back on gas only applies to pay-at-the-pump purchases. Cash back is earned on select purchases and becomes available for redemption as those purchases settle. The Uber Pro Card was launched in Canada in March 2024 through a partnership between Uber, Mastercard and Payfare, extending the existing US Uber Pro Card program northward.