Hastee API integration services (Earned Wage Access · OpenFinance)

Protocol analysis, payroll and timesheet sync, statement export and ready-to-run source code for HRIS, payroll, and financial wellbeing teams.

From $300 · Pay-per-call available
OpenData · OpenFinance · Earned Wage Access · UK & EU PSD2

Connect Hastee earned-wage data to your HRIS, payroll, and finance stack — safely

Hastee (com.hastee.pay) is a B2B financial wellbeing platform offering on-demand pay, savings nudges and money education to employees of more than 350 employer clients including McDonald's, Domino's, IKEA, Bupa and parts of the NHS. We help HR-tech vendors, payroll providers, ERP integrators and analytics teams build authorized integrations against Hastee's earned-wage, advance, savings and education data flows — and ship runnable source code or a hosted API you can call by request.

Wage advance & transaction APIs — Synchronize advance requests, withdrawal records, fee lines and settlement events for reconciliation against payroll cycles and general ledger postings.
Timesheet & pay-rate sync — Mirror the pattern Hastee already uses with Rotageek and Planday: push attendance, hours, contract rate and accrued earnings via authorized API for live "earned" balance calculation.
Statement & savings export — Pull employee-authorised statements, savings goals, pot balances and education progress as JSON / CSV for benefits dashboards, accounting sync and engagement analytics.
Employer & admin portal data — Aggregate (PII-minimised) take-up, advance volume, average withdrawal and repayment metrics for HR analytics and CFO-level financial-wellbeing reporting.

Feature modules

Earned-wage balance API

Read the live "available to draw" amount per employee derived from worked hours, contract pay rate and prior advances. Use it inside an HRIS dashboard, manager app or financial wellbeing widget. Field surface includes employee_ref, pay_period_start, accrued_gross, fees_to_date, available_balance.

Advance & repayment ledger

Per-advance records (request time, amount, fee, payout rail, status) plus the matching deduction line that flows back into payroll on the next cycle. This is the dataset accounting and audit teams need for reconciliation, never-miss payroll closure, and IFRS-friendly fee recognition.

Timesheet ingestion adapter

A drop-in adapter that mirrors how Rotageek and Planday already feed Hastee: post shifts and pay rates as they are approved so the available balance updates near-real-time. Useful for retailers and hospitality groups running fast-moving rotas.

Savings & education events

Hastee surfaces savings nudges and a library of money education content. Event hooks let you record completions, savings-goal milestones and content engagement for benefits-platform reward programs or wellbeing scoring models.

Settlement & payments hook

Hastee pays advances over Modulr's API-first connection to UK Faster Payments and SEPA Instant in the EEA, typically in under 10 seconds, 24/7. We expose those payout confirmation events as webhooks so your treasury, fraud, and customer-comms systems can react without polling.

Employer analytics export

Aggregated, anonymised take-up metrics for the HR director or CFO: percentage of workforce active, average advance size, repeat usage, top use-cases. Delivered as a scheduled CSV/Parquet drop or queryable read API.

Data available for integration

Below is a practical inventory of the data Hastee holds that an authorized integration can expose. All access assumes employer-level enablement and employee consent in line with PSD2 / UK GDPR.

Data typeSource (screen / feature)GranularityTypical use
Earned-wage balanceHome / "Available to withdraw"Per employee, per pay period, refreshed on shift approvalLive HRIS widgets, manager visibility, wellbeing scoring
Advance withdrawalsWithdraw flow / historyPer transaction (amount, fee, rail, status)Payroll reconciliation, cashflow forecasting, fraud monitoring
Repayment / payroll deductionPayroll cycle closePer cycle, per employeeGeneral ledger posting, audit, dispute handling
Savings pot & goalsSave / goals screenPer pot, balance + target + frequencyBenefits dashboards, retention & engagement insight
Education content engagementLearn / content libraryPer piece consumed, completion + durationWellbeing programme reporting, ESG / CSR metrics
Timesheet & pay-rateWFM / T&A integration (Rotageek, Planday, etc.)Per shift, per contractEarned-balance calculation, schedule analytics
Employer admin metricsHastee admin portalAggregated by site / department / monthHR director and CFO dashboards, benefits ROI

Typical integration scenarios

1. HRIS / payroll vendor sync

An HR-tech vendor (e.g. a Zellis-adjacent payroll suite, mid-market HRIS or workforce management product) wants Hastee's earned-wage and advance data in one pane. Scenario: push approved shifts and contract rates into Hastee, pull back advance and repayment events, post them to the payroll register and surface a "financial wellbeing" tab inside the HRIS. Maps cleanly to OpenFinance "account information service" patterns adapted for payroll-bound data.

2. Accounting & ERP reconciliation

Finance teams in retail and hospitality groups need to reconcile fast-payment advances against the payroll close. Scenario: pull a monthly statement of advances + fees + repayments per employee, transform to Xero / NetSuite / SAP journal lines, and post via the ERP API. Includes an immutable audit log with consent records and Faster Payments transaction IDs.

3. Benefits & wellbeing dashboard

A benefits platform aggregating multiple employee perks wants a single wellbeing score per organisation. Scenario: ingest Hastee anonymised take-up metrics, savings goal completions and education engagement events; combine with pension and EAP data; expose a scored API to HR leaders. Useful for tenders that ask for measurable wellbeing outcomes.

4. Compliance & risk monitoring

Risk teams want oversight of advance frequency by site to detect over-reliance or potential affordability concerns. Scenario: stream withdrawal events into a risk lake, run threshold rules (e.g. >X advances/month per employee or >Y% of accrued balance), open a ticket in the case management tool. Aligns with FCA "Consumer Duty" expectations on vulnerable customer outcomes.

5. Cross-platform unified pay export

Multinationals using more than one earned-wage provider (Hastee in EMEA, DailyPay or Payactiv in the US) want a single export. Scenario: build a normaliser that maps each provider's advance schema to a unified WageEvent object and ships consolidated CSVs to the global payroll team. We deliver the Hastee-side adapter as part of this scenario.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger specification for every exposed endpoint
  • Authorization & protocol report (token chain, refresh, employer-tenant scoping)
  • Runnable source for advance, statement and timesheet APIs (Python / Node.js / Go)
  • Webhook handlers for Faster Payments / SEPA Instant settlement events
  • Test suite + sample fixtures covering UK and EU pay rails
  • Compliance brief (PSD2, UK GDPR, FCA Consumer Duty notes, retention guidance)
  • Developer documentation in English, ready to hand to your engineering team

Technical implementation — sample 1: earned-wage balance

// Fetch live earned-wage balance for an employee
GET /api/v1/hastee/balance?employee_ref=EMP-00482
Authorization: Bearer <ACCESS_TOKEN>
X-Employer-Tenant: tenant_acme

200 OK
{
  "employee_ref": "EMP-00482",
  "pay_period_start": "2026-04-01",
  "pay_period_end":   "2026-04-30",
  "accrued_gross":    1842.55,
  "fees_to_date":     7.50,
  "advances_to_date": 320.00,
  "available_balance": 1515.05,
  "currency": "GBP",
  "as_of": "2026-04-28T09:14:21Z"
}

Technical implementation — sample 2: advance request

// Initiate an authorised wage advance
POST /api/v1/hastee/advances
Authorization: Bearer <ACCESS_TOKEN>
Idempotency-Key: 2c1b9e6e-...

{
  "employee_ref": "EMP-00482",
  "amount": 120.00,
  "currency": "GBP",
  "rail": "FASTER_PAYMENTS",
  "consent_id": "cns_8821"
}

201 Created
{
  "advance_id": "adv_71f2",
  "status": "SETTLED",
  "fee": 2.50,
  "settled_at": "2026-04-28T09:14:29Z",
  "rail_reference": "FPS-2026-04-28-91A"
}

Technical implementation — sample 3: settlement webhook

// Webhook from our integration to your platform
POST https://your-app.example.com/webhooks/hastee
X-Hastee-Signature: t=1714295669,v1=...

{
  "event": "advance.settled",
  "advance_id": "adv_71f2",
  "employee_ref": "EMP-00482",
  "amount": 120.00,
  "fee": 2.50,
  "rail": "FASTER_PAYMENTS",
  "rail_reference": "FPS-2026-04-28-91A",
  "occurred_at": "2026-04-28T09:14:29Z"
}

// Verify HMAC, then upsert into your ledger.
// Errors: respond with 5xx for retry, 2xx to ack.

Compliance & privacy

Hastee operates primarily in the UK and EEA, which puts integrations squarely under the Revised Payment Services Directive (PSD2), the UK Open Banking standards, and UK GDPR / EU GDPR. The FCA's Consumer Duty further raises the bar on ensuring advances do not push employees into harm. Our delivery includes documented consent capture, scoped tokens, data-minimised payloads (no raw PAN, hashed employee identifiers when possible), explicit retention windows, and an audit log compatible with regulator review. We never bypass authentication; every integration runs against authorised, employer-enabled flows or documented public APIs.

Data flow / architecture

A typical pipeline looks like this: Hastee mobile / employer admin → authorised API gateway → ingestion service (consent + rate-limit + signature check) → normalised storage (advance, balance, repayment, savings, education events) → downstream output (your HRIS, ERP, analytics warehouse, or a hosted REST endpoint we run on your behalf). Webhooks handle near-real-time settlement events; nightly jobs handle bulk reconciliation extracts.

Market positioning & user profile

Hastee is a B2B-distributed, B2C-experienced product: it reaches employees only via their employer. Its base spans more than 350 enterprises across hospitality (McDonald's, Domino's, Taco Bell), retail (IKEA, Mediamarkt, DIA) and healthcare (Bupa, NHS trusts), with a strong UK and Western-Europe footprint. Users are typically hourly or shift workers on Android and iOS, and the integration buyers are HR directors, payroll leads, benefits platforms and HR-tech ISVs — exactly the audience that values reliable, OpenFinance-aligned data plumbing.

Recent context (last 2 years)

In October 2024 Hastee announced it had reached profitability as earned wage access went mainstream with top employers. In December 2024 Hastee partnered with Loqbox to help users build credit profiles. On 16 June 2025, the Zellis Group acquired Hastee, folding the platform into Zellis' AI-enabled HR, workforce management and payroll suite — which makes a clean, well-documented integration layer more strategic than ever for ISVs, partners and corporate buyers around the Zellis ecosystem.

Screenshots

Click any thumbnail to enlarge. These are the public Play Store screenshots used for visual reference of the modules described above.

Hastee screenshot 1 Hastee screenshot 2 Hastee screenshot 3 Hastee screenshot 4 Hastee screenshot 5 Hastee screenshot 6 Hastee screenshot 7 Hastee screenshot 8

Similar apps & integration landscape

Hastee sits inside a global earned-wage-access (EWA) and on-demand pay ecosystem. Many of our buyers run multi-region payroll and need a unified view across these platforms. The list below is research-derived and intended for ecosystem context only — not as a ranking or comparison.

DailyPay

US-focused on-demand pay platform; holds advance, fee and repayment records that often need normalising into a global wage-event schema alongside Hastee.

EarnIn

Direct-to-consumer earned wage access with timesheet detection and overdraft alerts; useful comparison surface for advance-frequency analytics.

Payactiv

Broad financial wellness suite (EWA, bill pay, savings); customers running both Payactiv and Hastee often want consolidated take-up reporting.

Branch

Workforce payments platform covering tips, EWA and direct deposit; integration buyers care about unified disbursement events across rails.

ZayZoon

EWA + financial education for SMB employers; complementary surface for engagement and education-completion analytics.

FlexEarn

Earned wage access provider with employer dashboards; relevant when you want to benchmark advance-volume metrics across providers.

Clair

Workplace-connected banking with embedded EWA at thousands of US employers; integration buyers often unify Clair and Hastee event streams.

Payflow

Spain-based on-demand pay and flexible benefits; common in groups with both Iberian and UK workforces alongside Hastee.

Wagestream / Stream

UK-headquartered earned wage access and financial wellbeing platform; the most direct ecosystem peer to Hastee for cross-employer reporting.

Paywatch

APAC-focused EWA provider; relevant when multinationals stitch APAC and EMEA earned-wage data into one operations dashboard.

About us

We are an independent technical service studio focused on App interface integration and authorized API integration. Our engineers come from banking, payments, payroll-tech and protocol-analysis backgrounds. For Hastee specifically, we bring direct experience with PSD2 / Open Banking patterns, Faster Payments / SEPA Instant settlement events, and HRIS / WFM / payroll connectors of the kind Hastee already runs with Rotageek, Planday and the broader 80+ T&A integrations.

  • Earned wage access, digital banking, payroll-tech and benefits platforms
  • OpenAPI design, security review, threat-modelling and pen-testing support
  • Custom Python / Node.js / Go SDKs, webhook handlers and test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance
  • Source code delivery from $300 — receive runnable API source code and full documentation; pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted API and pay only per call, no upfront cost; ideal for teams that prefer usage-based pricing

Contact

Send us the target app (Hastee in this case) and your concrete requirements — endpoints, data fields, volumes, target environment — and we will reply with a scope, timeline and quote.

Open contact page

Engagement workflow

  1. Scope confirmation: integration scenarios, data fields, target environment (HRIS, ERP, dashboard).
  2. Protocol analysis and API design (2–5 business days, complexity-dependent).
  3. Build and internal validation against UK Faster Payments / SEPA Instant test cases (3–8 business days).
  4. Documentation, sample requests, and end-to-end test suite (1–2 business days).
  5. Typical first delivery: 5–15 business days; employer- or third-party approvals may extend timelines.

FAQ

What do you need from me?

The target app (Hastee), the specific data you need (e.g. advances, repayments, balance, savings goals), employer / sandbox credentials if available, and your target system (HRIS / ERP / data warehouse).

How long does delivery take?

Usually 5–12 business days for the first source-code drop and documentation; multi-tenant employer rollouts and webhook signing may extend it slightly.

How do you handle compliance?

Authorized flows or documented public APIs only, with consent records, scoped tokens, data minimisation and PSD2 / UK GDPR / FCA Consumer Duty alignment. NDAs available on request.

Can you work alongside the Zellis stack?

Yes. Since Zellis Group acquired Hastee in June 2025, we routinely build adapters that sit cleanly beside Zellis HR, WFM and payroll modules without duplicating their responsibilities.
📱 Original app overview (appendix — click to expand)

Hastee (package com.hastee.pay) is a B2B financial wellbeing app distributed by employers. Its tagline — "Life doesn't wait for payday so why should you?" — captures the core value proposition: employees can access pay they have already earned, start saving from the moment they earn it, and learn about money through a curated library of video, audio, podcast and written content. Hastee charges no interest; instead, a fair, simple fee may apply when an employee withdraws money. There is no credit check and no impact on credit rating.

Hastee is an employee benefit: only employees of companies that offer Hastee can use it. The platform serves over 350 employer clients across hospitality (McDonald's, Domino's, Taco Bell), retail (IKEA, Mediamarkt, DIA) and healthcare (Bupa, NHS trusts), with millions of pay-related interactions annually. Behind the scenes, Hastee uses Modulr's API-first connection to UK Faster Payments and SEPA Instant in the EEA to settle advances, typically in under 10 seconds, 24/7/365. It integrates natively with workforce-management and payroll platforms such as Rotageek and Planday and supports simple API or SFTP exchange where direct connectors are not yet available.

Recent milestones: Hastee announced profitability in October 2024, partnered with Loqbox in December 2024 to help users build credit profiles, and was acquired by the Zellis Group on 16 June 2025 — bringing earned wage access into Zellis' AI-enabled HR, workforce management and payroll platform. Hastee is available on Android and iOS and is positioned as a discreet, flexible, employer-sponsored alternative to high-cost short-term credit.