Protocol analysis, payroll and timesheet sync, statement export and ready-to-run source code for HRIS, payroll, and financial wellbeing teams.
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.
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.
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.
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.
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.
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.
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.
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 type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Earned-wage balance | Home / "Available to withdraw" | Per employee, per pay period, refreshed on shift approval | Live HRIS widgets, manager visibility, wellbeing scoring |
| Advance withdrawals | Withdraw flow / history | Per transaction (amount, fee, rail, status) | Payroll reconciliation, cashflow forecasting, fraud monitoring |
| Repayment / payroll deduction | Payroll cycle close | Per cycle, per employee | General ledger posting, audit, dispute handling |
| Savings pot & goals | Save / goals screen | Per pot, balance + target + frequency | Benefits dashboards, retention & engagement insight |
| Education content engagement | Learn / content library | Per piece consumed, completion + duration | Wellbeing programme reporting, ESG / CSR metrics |
| Timesheet & pay-rate | WFM / T&A integration (Rotageek, Planday, etc.) | Per shift, per contract | Earned-balance calculation, schedule analytics |
| Employer admin metrics | Hastee admin portal | Aggregated by site / department / month | HR director and CFO dashboards, benefits ROI |
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.
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.
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.
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.
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.
// 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"
}
// 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"
}
// 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.
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.
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.
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.
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.
Click any thumbnail to enlarge. These are the public Play Store screenshots used for visual reference of the modules described above.
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.
US-focused on-demand pay platform; holds advance, fee and repayment records that often need normalising into a global wage-event schema alongside Hastee.
Direct-to-consumer earned wage access with timesheet detection and overdraft alerts; useful comparison surface for advance-frequency analytics.
Broad financial wellness suite (EWA, bill pay, savings); customers running both Payactiv and Hastee often want consolidated take-up reporting.
Workforce payments platform covering tips, EWA and direct deposit; integration buyers care about unified disbursement events across rails.
EWA + financial education for SMB employers; complementary surface for engagement and education-completion analytics.
Earned wage access provider with employer dashboards; relevant when you want to benchmark advance-volume metrics across providers.
Workplace-connected banking with embedded EWA at thousands of US employers; integration buyers often unify Clair and Hastee event streams.
Spain-based on-demand pay and flexible benefits; common in groups with both Iberian and UK workforces alongside Hastee.
UK-headquartered earned wage access and financial wellbeing platform; the most direct ecosystem peer to Hastee for cross-employer reporting.
APAC-focused EWA provider; relevant when multinationals stitch APAC and EMEA earned-wage data into one operations dashboard.
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.
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.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Can you work alongside the Zellis stack?
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.