Authorized SNAP, WIC, TANF and SSI balance sync, EBT transaction history APIs, and security-signal feeds for fintech, retail, and benefits-tech teams
Propel (formerly Providers, Fresh EBT) is the #1 rated EBT app in the United States with 5+ million users across 52 states and territories. We help your team integrate the same class of permissioned benefits data — balance, deposits, transaction history, card-lock state — into reconciliation, retail loyalty, financial-coaching, and government-tech products.
A single GET /balance endpoint that returns SNAP food, EBT cash, WIC food package balances and the next deposit date, normalized across state systems such as Quest, ebtEDGE and ConnectEBT. Used for in-store budgeting prompts, financial-coaching dashboards, and grocery-cart eligibility checks before checkout.
Paginated /transactions stream with merchant name, MCC, amount, benefit type and posted timestamp. Supports date ranges, filtering by program (SNAP vs cash), and webhooks for new postings — useful for reconciliation, anomaly detection, and benefit-cliff analytics.
Bridge to state-level card-lock and out-of-state blocking endpoints (currently exposed by 40+ states) so fraud-prevention products can lock a card immediately after a suspicious purchase. Mirrors the EBT security stack Propel ships in 2024–2025 across roughly 45 states.
Reference data feed listing program rules per state (issuance day, replacement-card policy, card-lock availability, out-of-state blocking availability), sourced from official channels including www.fns.usda.gov and state EBT contractor sites.
Optional adapter to publish merchant-side EBT offers and grocery discounts back to your loyalty wallet, matching Propel's exclusive-offers section. Helpful for retailers who want to mirror the same promotional surface inside their own app.
Structured stream of policy updates (SNAP COLA changes, Summer EBT issuance windows, state SNAP-Ed events) and local job listings — the same content categories Propel surfaces — so partner apps can keep their notifications relevant.
The following data inventory is what we typically expose through an authorized integration mirroring Propel's read surface. All data is read-only on the EBT side: cardholders cannot spend funds or change account information through these endpoints, matching how Propel itself accesses state EBT systems.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| SNAP food balance | Home / Balance card | Cents, real-time at fetch | Pre-checkout eligibility, budgeting nudges |
| EBT cash (TANF) balance | Balance card | Cents, real-time at fetch | Bill-pay coaching, ATM-fee analytics |
| WIC food package | WIC tab | Per food category quantity + expiry | WIC-eligible cart matching, pantry planning |
| Transaction history | Activity feed | Per-transaction: merchant, amount, type | Reconciliation, fraud detection, spend insights |
| Deposit / issuance events | Notifications | Date, amount, program | Cash-flow forecasting, payday-style alerts |
| Card status (locked / unlocked) | Security center | Boolean + last-changed timestamp | Fraud control, customer-support workflows |
| Out-of-state & online block flags | Security center | Boolean per channel | Risk scoring, parental control, audit |
| Suspicious-transaction alerts | Security feed | Event with merchant + reason code | Anti-skimming, case management |
| Benefit-update notices | Updates feed | State-level policy text | Benefits-tech CRM, outreach campaigns |
Business context: An online grocer wants to show shoppers their available SNAP balance before checkout and prevent declined transactions at the payment terminal.
Data / API: GET /v1/ebt/balance with the customer's authorized link token returns SNAP food and EBT cash balances; the basket service compares it to the SNAP-eligible subtotal.
OpenData mapping: Treats the state EBT portal as an authorized OpenData source, with a consent record stored alongside the balance — similar to how Open Banking treats account information.
Business context: A nonprofit financial-health platform wants a single view of EBT, TANF, and a checking account for each client.
Data / API: /transactions stream from the EBT side joined with an Open Banking aggregator on the bank side; both keyed by an internal client ID.
OpenData mapping: Demonstrates an "OpenFinance for safety-net" pattern, extending OpenBanking aggregation conventions to government-issued benefits.
Business context: A state vendor wants caseworkers to see real client balances and recent transactions to resolve missing-issuance tickets faster.
Data / API: Webhook on new balance.deposited and transaction.posted events updates the case-management system; a search endpoint surfaces last 90 days of activity.
OpenData mapping: Same data Propel surfaces in-app, but exposed through documented APIs so the case worker's CRM can act on it programmatically.
Business context: EBT skimming is a major issue — Propel built card-lock, online blocking, and suspicious-transaction monitoring specifically because of it. A consumer-protection app wants to offer the same reflex.
Data / API: Subscribe to security.suspicious_transaction webhook; on event, call POST /v1/ebt/card/lock for states where it is supported.
OpenData mapping: Wraps state security primitives (card lock, out-of-state block, online block) into a uniform API so a single integration covers the 40+ states that expose them.
Business context: A cash-back app such as Benny links a customer's EBT account, watches qualifying transactions, and pays a reward to a separate wallet.
Data / API: Long-living link token similar to the Benny EBT Balance Link pattern, paired with a webhook on each new transaction; reward decisions run server-side from the merchant + MCC fields.
OpenData mapping: Same OpenBanking-style "permissioned link" model used by aggregators in PSD2 markets, applied to public-benefits data.
// Server-side: create a single-use link token
POST /v1/ebt/link/create
Content-Type: application/json
Authorization: Bearer <PARTNER_API_KEY>
{
"client_user_id": "u_8821",
"state": "TX",
"products": ["balance", "transactions", "card_status"],
"callback_url": "https://app.example.com/ebt/done"
}
// Response
{
"link_token": "ltk_a1b2c3...",
"expires_at": "2026-04-29T18:00:00Z"
}
// Get current balances (multi-program)
GET /v1/ebt/balance?account_id=acc_77F2
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"snap_food_cents": 17345,
"ebt_cash_cents": 4200,
"wic_packages": [
{"category":"milk","remaining_qty":2,"unit":"gallon"},
{"category":"cereal","remaining_qty":36,"unit":"oz"}
],
"next_deposit": {"date":"2026-05-04","program":"SNAP","amount_cents":29100},
"as_of": "2026-04-29T11:42:18Z"
}
// Page through transactions
GET /v1/ebt/transactions?account_id=acc_77F2
&from=2026-04-01&to=2026-04-29&cursor=&limit=50
// Inbound webhook payload
POST https://app.example.com/webhooks/ebt
X-Signature: t=1714400000,v1=...
{
"event":"security.suspicious_transaction",
"account_id":"acc_77F2",
"state":"NY",
"transaction":{
"merchant":"UNKNOWN ATM 4421",
"amount_cents":24000,
"channel":"out_of_state",
"reason_code":"OOS_HIGH_AMOUNT"
},
"recommended_action":"lock_card"
}
// Response: lock the card
POST /v1/ebt/card/lock
{ "account_id":"acc_77F2", "reason":"auto_oos_lock" }
Benefits data is governed by overlapping federal and state rules. Our integrations follow the same posture Propel publicly commits to: read-only access via permissioned links, no storage of full PAN or PIN, and explicit user consent records.
The pipeline is intentionally short and observable, so data minimization and consent are easy to enforce.
Propel serves more than 5 million low- and moderate-income households across all 50 U.S. states plus DC, Puerto Rico, the U.S. Virgin Islands and Guam, on both Android and iOS. Propel rebranded from Providers / Fresh EBT in 2024 and received a $3.5M grant from the Bill & Melinda Gates Foundation that year to develop AI-powered safety-net navigation tools — signalling that the next wave of integrations is moving from pure balance lookups toward intelligent benefits coaching. The audience for an integration like this is mostly U.S.-based: grocery retailers, fintechs serving underbanked customers, financial-coaching nonprofits, benefits-tech vendors that sell into state agencies, and consumer-protection apps responding to the EBT-skimming wave.
Tap any thumbnail to view a larger version. These are the official Propel EBT & SNAP Benefits screens; we use them only to show which surfaces in the app correspond to the integration data above.
The U.S. EBT and benefits-management space has several apps that hold structurally similar data. Teams who integrate with Propel-style data often need to support these alongside it, which is why we mention them here as part of the broader integration landscape.
If your roadmap covers any of the apps above, we can extend the same data model and webhooks to cover them so that your downstream system stays in one schema regardless of where the cardholder lives.
We are an independent technical studio focused on App interface integration and authorized API integration. Team members come from fintech, payments, identity, and protocol-analysis backgrounds, and have shipped production integrations against banking, EBT, e-commerce and travel back-ends in the U.S. and abroad. For benefits-tech specifically, we focus on read-only, permissioned integrations that respect the access posture state EBT contractors require.
To request a Propel EBT & SNAP Benefits integration scope or discuss multi-app benefits coverage, please open our contact page. We will reply with a written scope, timeline, and a sandbox plan within one business day.
For RFPs and procurement teams: we can supply NDAs, security questionnaires, and references on request.
What do you need from me to start?
How do you handle user consent?
Do you store the cardholder's PIN or full card number?
Can you cover all 52 territories from day one?
Publisher: Propel, Inc. — 235 Duffield Street Suite 1700, Brooklyn NY 11201. Propel is a private company, not affiliated with any government entity. It securely accesses EBT account information with the user's permission via state EBT systems and sources government information from official sources such as www.fns.usda.gov, www.medicaid.gov, www.lifelinesupport.org, and www.irs.gov.
Positioning: The #1 rated EBT app for checking food stamp / SNAP balance, used by 5+ million people. Formerly branded as Providers and Fresh EBT.
Check your EBT and WIC balances and spending history instantly on your phone with the app.
Supports EBT card programs in most states and territories, including SNAP, WIC and Summer EBT. Compatible with Quest, ebtEDGE, ConnectEBT, California CalFresh, Texas Lone Star, Your Texas Benefits, Florida & Pennsylvania ACCESS, Illinois Link, Oregon Trail and more. Coverage also includes DC, PR, USVI and Guam.
Lock the card, block fraudulent transactions outside of the home state, monitor suspicious transactions, and prevent EBT theft before it happens.
Regular updates on changes to food stamps (SNAP), Summer EBT, Disability and other benefits in all states.
Exclusive deals for EBT cardholders and weekly discounts on groceries and bills, plus a job board for local employment opportunities from gigs to full-time roles.
Security feature availability depends on the state's EBT system. Source: propel.app.