Compliant protocol analysis and production-ready APIs for the Payfare-powered Uber Pro Card (com.payfare.uberpro): earnings, statements, cashback, Backup Balance and EV charging data.
The Uber Pro Card, launched in Canada in March 2024 through Uber, Mastercard and Payfare, holds a richer financial dataset than a typical prepaid card: per-trip cashouts, gas and EV-charging cashback, Backup Balance draws and ATM withdrawals. Our team specializes in turning that mobile-only data into authorized OpenFinance APIs.
Authorized session emulation for the Uber Pro Card app: login binding, token refresh, device fingerprinting, OTP/MFA handling. Built on the same OAuth 2.0 patterns Payfare publicly references when consuming Uber's /partners/me endpoint, adapted to authorized end-user flows.
Pull every per-trip cashout that hits the card. Each event carries trip ID, payout amount, currency (CAD), settlement timestamp and Uber Pro tier at the moment of settlement — the canonical input for driver bookkeeping or aggregator dashboards.
Card-side ledger: purchase amount, merchant name, MCC, gas-pump or EV-charge classification, decline reasons. Used for monthly reconciliation, tax categorization and small-business expense tracking under Mastercard Easy Savings.
Expose the rule engine that converts gas / EV-charging spend into accrued rewards based on Diamond, Platinum, Gold or Blue status. Supports the $100 monthly refueling cap and partial-month proration when tier changes mid-cycle.
Detect eligibility, available headroom (up to $50), drawdown events and automatic repayment from the next payout. Returned as a structured object so risk teams can replay the liquidity ladder.
Withdrawal events at participating Canadian ATMs and tokenized contactless purchases via Google Wallet, with provisioning state, terminal ID and acquirer hint — useful for fraud-detection rule sets.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| Per-trip cashout | Earnings / Activity tab | Per event, near-real-time | Bookkeeping, tax prep, gross-vs-net audits |
| Card transactions | Card > Transactions list | Per swipe / contactless tap | Expense reconciliation, MCC analytics |
| Gas cashback ledger | Rewards summary | Per qualifying pay-at-pump event | Driver cost-of-fuel reporting |
| EV charging cashback | Rewards summary | Per public charge session (up to 8%) | Fleet electrification / sustainability KPIs |
| Uber Pro tier | Profile > Status | Daily refresh | Reward rate computation, segmentation |
| Backup Balance | Card > Balance widget | Per draw + repay | Short-term-credit risk modeling |
| ATM withdrawals | Card transactions | Per withdrawal | Cash-out behavior analytics |
| Account / KYC metadata | Profile & onboarding | One-time + change events | Compliance, onboarding analytics |
A Canadian rideshare bookkeeping SaaS pulls per-trip cashouts and matched card spend, classifies fuel and EV charging through the cashback ledger, then exports T2125-ready summaries. The integration consumes the Earnings API and the Transactions API and joins on settlement date so net earnings reconcile against deposits to the Uber Pro Card.
A delivery aggregator wants to measure EV adoption across its courier fleet. We project the EV-charging cashback events (the 8% tier flag is a strong proxy) into a daily kWh-equivalent metric and surface it alongside total trips. This maps cleanly onto OpenFinance principles: a single permissioned consumer-driven feed answers a sustainability KPI without scraping individual chargers.
A licensed EWA provider underwrites a cash advance against future Uber Pro Card payouts. They consume the Earnings stream, the Backup Balance object and the Uber Pro tier in real time, then size the advance against 7-day rolling cashouts. The architecture aligns with Canada's Consumer-Driven Banking Framework finalized in Budget 2025 — explicit consent, scoped scopes and revocable tokens.
An insurer that prices commercial-auto coverage for gig drivers wants a usage-based premium signal. Pay-at-pump and public EV-charge events from the card act as a fuel-consumption proxy, while ATM patterns refine cash exposure. Field mapping happens through our statement API; payloads return MCC, terminal location hints and Mastercard Easy Savings tags.
Many Canadian gig workers run Uber and Uber Eats alongside DoorDash, Instacart or Lyft. A unified earner-finance app stitches the Uber Pro Card feed with DasherDirect, Lyft Direct and Branch outputs, producing a consolidated view of weekly take-home, fuel rebates and instant-pay velocity across platforms.
// Authorized session bootstrap for com.payfare.uberpro
POST /api/v1/uberpro/auth/login
Content-Type: application/json
{
"username": "driver@example.ca",
"password": "<encrypted>",
"device_id": "android-04a9c1...",
"mfa_otp": "428193"
}
// 200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_...",
"expires_in": 1800,
"scope": "earnings statement rewards backup_balance",
"issuer": "Peoples Trust Company"
}
POST /api/v1/uberpro/statement
Authorization: Bearer <ACCESS_TOKEN>
{
"from_date": "2026-03-01",
"to_date": "2026-03-31",
"channels": ["pump_gas","ev_charging","atm","pos"],
"currency": "CAD",
"page": 1,
"page_size": 100
}
// 200 OK
{
"items": [
{
"txn_id": "t_8842a1",
"ts": "2026-03-04T18:21:00-05:00",
"type": "pump_gas",
"merchant": "Petro-Canada #1124",
"mcc": "5541",
"amount": -64.20,
"cashback_pct": 4.0,
"uber_pro_tier": "Diamond"
}
],
"next_page": 2,
"monthly_refuel_cashback_cap_remaining": 71.40
}
POST <your_webhook_url>
X-Signature: sha256=...
{
"event": "backup_balance.drawn",
"occurred_at": "2026-04-12T03:55:11Z",
"card_last4": "8810",
"amount": 25.00,
"remaining_headroom": 25.00,
"auto_repayment": {
"trigger": "next_payout",
"expected_at": "2026-04-12T11:00:00Z"
},
"issuer": {
"name": "Peoples Trust Company",
"cdic_member": true
}
}
Every integration we ship for Uber Pro Card data is engineered around the live Canadian regulatory frame, not a generic checklist. Three pieces matter most for this app:
On the card-issuer side, the Uber Pro Card is issued by Peoples Trust Company, a CDIC member institution. Funds on the card are eligible for CDIC coverage up to $100,000 per insured category. We expose these issuer attributes as fields on the account object so downstream systems can render the correct disclosures.
A typical deployment uses a four-stage pipeline:
txn_id with retention policy aligned to PCMLTFA record-keeping. Optional encryption at rest with customer-managed keys.The Uber Pro Card targets Canadian rideshare drivers and Uber Eats couriers — overwhelmingly mobile-first earners using Android and iOS Driver apps. Primary users are independent contractors who care about same-day liquidity, fuel cost and (increasingly) EV charging economics. Geographically, the program is Canada-only at launch; cardholder concentration follows Uber's Canadian metros — Toronto, Montreal, Vancouver, Calgary, Ottawa — but cashback eligibility extends to any Mastercard pay-at-pump or public-EV-charging merchant nationwide. This is a B2C front-end on a B2B financial stack: Payfare provides the digital banking platform, Mastercard runs the rails, and Peoples Trust Company issues. Our integration work usually serves bookkeeping SaaS, fleet operators, EWA providers and insurtech vendors selling into that population.
Click any thumbnail to view the full-size screenshot.
The Uber Pro Card sits inside a wider gig-worker financial stack. Canadian and North-American drivers and couriers frequently hold accounts with several adjacent apps, and unified data exports across these platforms is one of the most-requested integration jobs we see.
This list is not a ranking. It maps the integration landscape: each of these apps holds a partial picture of a gig worker's finances, and unified, consent-based access is what OpenFinance is supposed to enable.
What do you need from me?
How long does delivery take?
Do you handle pay-per-call?
We are a technical service studio specializing in App interface integration and authorized API integration. Our team has many years of hands-on experience with mobile applications and fintech, including payment networks, prepaid programs, and gig-economy payout platforms. We focus on protocol analysis, interface refactoring, OpenData integration, third-party interface integration, automated data scripting and full delivery of interface documentation. Customers provide a target app and a list of requirements; we deliver runnable API or protocol implementation source code.
For quotes, NDAs, or to submit your target app and requirements, open our contact page:
The Uber Pro Card is a business prepaid Mastercard powered by Payfare, designed exclusively for drivers and couriers who use the Uber Driver app. It can be used for purchases anywhere Mastercard is accepted.
How it works: Earnings go directly to the Uber Pro Card after every trip via automatic cashouts. Drivers earn up to 4% cash back on gas at the pump and up to 8% cash back on EV charging when they reach Diamond status; the higher the Uber Pro tier, the higher the cashback rate, with no trip fee. A Backup Balance of up to $50 is available when cash is low, subject to terms and eligibility.
Card management: The card can be added to Google Wallet for contactless payments, and cash withdrawals are supported at select ATMs across Canada. Drivers apply for the Uber Pro Card directly through the Driver app.
Issuer & insurance: The Uber Pro Card is issued by Peoples Trust Company under licence from Mastercard International Incorporated. Mastercard is a registered trademark, and the circles design is a trademark of Mastercard International Incorporated. Funds loaded onto the card are held by the issuer Peoples Trust Company, a member institution of CDIC, and are eligible for CDIC coverage. Uber and Payfare are not CDIC member institutions. Funds are combined with eligible deposits held under Peoples Trust Company for up to $100,000 of deposit protection, per insured category, per depositor. Further details are available on CDIC's website.
Terms note: Rewards are subject to change without notice. Gas and public EV-charging merchant classification is subject to Mastercard rules. Cash back on gas only applies to pay-at-the-pump purchases. Cash back rewards are earned for select purchases using the Uber Pro Card and become available for redemption as those purchases settle.