Propel EBT & SNAP Benefits — API integration & OpenData services

Authorized SNAP, WIC, TANF and SSI balance sync, EBT transaction history APIs, and security-signal feeds for fintech, retail, and benefits-tech teams

From $300 · Pay-per-call available
OpenData · Benefits Finance · Protocol analysis · EBT integration

Bring Propel-style EBT, SNAP, WIC and TANF data into your stack — under user authorization, with full audit trails

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.

Multi-program balance APIs — Unified read endpoints for SNAP, EBT cash, WIC food packages, and TANF balances pulled from state EBT portals (Quest, ebtEDGE, ConnectEBT, Your Texas Benefits, Florida ACCESS, Illinois Link, Oregon Trail).
Transaction history feed — Itemized purchase, refund, deposit and adjustment events with date range filters, paging, and JSON / CSV / Excel export adapters for back-office reconciliation.
Security-signal hooks — Webhooks for card-lock toggles, out-of-state block events, online-transaction blocks, and suspicious-transaction alerts where the underlying state system exposes them.

Feature modules

EBT balance sync

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.

Transaction history API

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.

Card security controls

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.

Benefit-program metadata

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.

Deals & offers ingest

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.

Job & benefits-update feed

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.

Data available for integration

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 typeSource screen / featureGranularityTypical use
SNAP food balanceHome / Balance cardCents, real-time at fetchPre-checkout eligibility, budgeting nudges
EBT cash (TANF) balanceBalance cardCents, real-time at fetchBill-pay coaching, ATM-fee analytics
WIC food packageWIC tabPer food category quantity + expiryWIC-eligible cart matching, pantry planning
Transaction historyActivity feedPer-transaction: merchant, amount, typeReconciliation, fraud detection, spend insights
Deposit / issuance eventsNotificationsDate, amount, programCash-flow forecasting, payday-style alerts
Card status (locked / unlocked)Security centerBoolean + last-changed timestampFraud control, customer-support workflows
Out-of-state & online block flagsSecurity centerBoolean per channelRisk scoring, parental control, audit
Suspicious-transaction alertsSecurity feedEvent with merchant + reason codeAnti-skimming, case management
Benefit-update noticesUpdates feedState-level policy textBenefits-tech CRM, outreach campaigns

Typical integration scenarios

1. Grocery-retailer "EBT-eligible cart" pre-check

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.

2. Financial-coaching app combining benefits + bank data

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.

3. Benefits-tech case-management for caseworkers

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.

4. Anti-skimming / EBT theft response

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.

5. Cash-back / loyalty integration in the style of Benny

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.

Technical implementation

1. Authorization & link creation

// 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"
}

2. Balance & transactions read

// 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

3. Webhook: card lock & suspicious activity

// 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" }

Deliverables checklist

  • OpenAPI 3.1 spec for balance, transactions, card status, security webhooks
  • Protocol & auth flow report (state portal session model, token refresh, error matrix)
  • Runnable reference server in Python (FastAPI) and Node.js (Express)
  • State-coverage matrix mirroring Propel's 52-territory list, including which security features are available where
  • Postman collection plus pytest / vitest integration suites
  • Compliance notes covering the Privacy Act of 1974 system of records, FNS data-handling, and per-state retention rules

Compliance & privacy

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.

  • Privacy Act of 1974 — applies to USDA/FNS-15 (the National SNAP Information Database) and frames how identifiable benefits data is handled.
  • FNS / USDA guidance — sourced from www.fns.usda.gov for SNAP and WIC interface rules; ANSI standards for WIC EBT define interfaces between state agencies, retailers and processors.
  • State EBT contractor terms — Quest network, ebtEDGE (FIS), ConnectEBT (Conduent) and state systems each have their own access rules; we honor whichever applies in the cardholder's state.
  • FedRAMP-aligned hosting — when data is processed in the cloud we use FedRAMP-aligned environments, mirroring how the FNS hosts its own SNAP information database.
  • State privacy laws — including CCPA/CPRA in California and emerging state benefits-data statutes; the integration emits an audit log per fetch for downstream review.

Data flow / architecture

The pipeline is intentionally short and observable, so data minimization and consent are easy to enforce.

  1. Client app — captures user authorization through a Propel-style link flow; nothing leaves the device unencrypted.
  2. Ingestion gateway — exchanges the link token for a session against the state EBT portal (Quest, ebtEDGE, ConnectEBT, etc.).
  3. Normalization layer — maps state-specific responses into a unified SNAP / cash / WIC schema and drops fields you didn't request.
  4. Storage & webhook bus — short-retention cache (configurable, default 24h) plus a signed webhook stream into your downstream analytics, CRM or fraud system.

Market positioning & user profile

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.

Screenshots

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.

Propel EBT & SNAP Benefits screenshot 1 Propel EBT & SNAP Benefits screenshot 2 Propel EBT & SNAP Benefits screenshot 3 Propel EBT & SNAP Benefits screenshot 4 Propel EBT & SNAP Benefits screenshot 5 Propel EBT & SNAP Benefits screenshot 6 Propel EBT & SNAP Benefits screenshot 7

Similar apps & integration landscape

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.

  • ebtEDGE — FIS-operated EBT app supporting SNAP, TANF, WIC and child-care balance lookups; common companion data source for partners that work in FIS-served states.
  • ConnectEBT — Conduent-operated app covering AL, AR, DE, GA, IL, IA, ME, MD, NJ, OH, OK, PA, SC, UT, VA and more; balance and transaction structure aligns with the Quest network model.
  • Your Texas Benefits — Texas HHS app for Lone Star Card balances and SNAP / TANF / Medicaid / CHIP case management; teams unifying Texas data often query both this and Propel-style feeds.
  • LifeInCheck EBT — Louisiana EBT app with balance lookup, recent purchases, benefit schedules and card lock; relevant for any partner adding Louisiana coverage.
  • Florida ACCESS — Florida DCF benefits app/portal; aligns with Propel's Florida coverage and adds case-status data on top of balance information.
  • Illinois Link — Illinois EBT cardholder portal; useful where an integration also needs to expose Link card transaction history to Illinois recipients.
  • Oregon Trail Card portal — Oregon's EBT/SNAP card information surface; commonly paired with Propel-style data for Pacific Northwest coverage.
  • Benny: Cash Back on EBT & SNAP — third-party rewards app whose EBT Balance Link API is a useful reference point for permissioned-link patterns; teams often want to bridge Benny-style flows with Propel-style read APIs.
  • Forage — USDA-approved EBT online payments processor; used in tandem with balance APIs to actually execute SNAP-online checkout against the EBT rails.
  • Cardknox EBT — payments gateway with EBT balance and transaction commands; commonly referenced by retailers building their own EBT acceptance alongside a Propel-style balance lookup.

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.

About our studio

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.

  • Authorized OpenData / OpenFinance / OpenBanking-style integrations
  • App protocol analysis and API refactoring (Android & iOS)
  • Reference server, SDKs, and OpenAPI documentation in Python, Node.js, and Go
  • End-to-end pipeline: protocol capture → schema design → build → validation → compliance handoff
  • Source-code delivery from $300 — receive runnable API source and full documentation; pay after delivery upon satisfaction.
  • Pay-per-call API billing — call our hosted endpoints and pay only for the calls you make, no upfront fee.

Contact

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.

Contact page

For RFPs and procurement teams: we can supply NDAs, security questionnaires, and references on request.

Engagement workflow

  1. Scope confirmation — which programs (SNAP / WIC / TANF), which states, which security signals.
  2. Protocol analysis & OpenAPI design (2–5 business days, depending on state coverage).
  3. Reference build and internal validation against sandbox accounts (3–8 business days).
  4. Documentation, sample apps, and Postman / pytest test cases (1–2 business days).
  5. Typical first delivery is 5–15 business days; multi-state rollouts can extend timelines as state portals vary.

FAQ

What do you need from me to start?

The target app (Propel EBT & SNAP Benefits is already specified), the list of states you must cover, and a description of which downstream systems will consume the data (CRM, ledger, mobile app, etc.).

How do you handle user consent?

Every integration ships with an explicit per-user link flow. We log who consented, when, and to which products; consent can be revoked and the link invalidated at any time.

Do you store the cardholder's PIN or full card number?

No. Following Propel's stated posture, we do not persist PINs, full PANs or SSNs server-side. Only the minimum identifiers needed to refresh a session against the state EBT portal.

Can you cover all 52 territories from day one?

Most engagements start with a focused state set (often 5–10 states) and expand as needed. We maintain a state-coverage matrix mirroring Propel's footprint so you can prioritize.
📱 Original app overview — Propel EBT & SNAP Benefits (appendix)

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.

Track all your benefits in one place

  • SNAP
  • EBT
  • WIC
  • Cash benefits (TANF)

Instantly see your EBT balance

Check your EBT and WIC balances and spending history instantly on your phone with the app.

Supported in 52 states and territories

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.

Protect your benefits

Lock the card, block fraudulent transactions outside of the home state, monitor suspicious transactions, and prevent EBT theft before it happens.

Stay on top of your benefits

Regular updates on changes to food stamps (SNAP), Summer EBT, Disability and other benefits in all states.

Save money & find work

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 (per Propel)

  • Card locking: AL, AK, AZ, CA, CO, DE, DC, FL, GA, GU, HI, ID, IL, KS, KY, MA, MD, ME, MI, MN, MO, NE, NV, NH, NJ, NM, NY, NC, ND, OH, OK, OR, PA, RI, SC, SD, TN, UT, VT, VI, VA, WA, WV, WI, WY.
  • Out-of-state transaction blocking: AK, AZ, CA, CO, DE, DC, FL, GA, GU, HI, ID, IL, KS, KY, LA, MD, ME, MI, MN, MO, NE, NV, NH, NJ, NM, NY, NC, ND, OH, OK, OR, PA, RI, SC, SD, TN, UT, VT, VI, VA, WA, WV, WI, WY.
  • Online transaction blocking: AK, AZ, CA, CO, DC, FL, GU, HI, ID, IL, KS, KY, ME, MI, MN, MO, NE, NV, NH, NM, NY, NC, ND, OR, RI, SD, TN, VT, VI, WA, WV, WI, WY.
  • Suspicious transaction monitoring: AL, AZ, AR, CA, CO, CT, DE, FL, GA, GU, IL, IN, KS, KY, LA, MD, ME, MI, MS, NJ, NY, OH, OK, PA, PR, SC, TN, TX, UT, VA.
  • High-risk transaction blocking: AL.

Security feature availability depends on the state's EBT system. Source: propel.app.