Authorized protocol analysis, eligibility matching endpoints, payout tracking webhooks and unclaimed property feeds — ready-to-ship source code for consumer refund and recovery stacks.
PayMe - Claim Your Money (package com.kinetic.payme.app) uses AI matching against 5,000+ active class action lawsuits, unclaimed property records across all 50 U.S. states, Gmail bill scans, gift-card recovery and tax-credit checks. Our studio reverse-engineers these flows into authorized, compliant APIs so that fintech, personal finance, neobanks and legal-tech platforms can embed settlement discovery and payout tracking natively.
A REST endpoint that mirrors PayMe's short-questionnaire flow: intake fields include state of residence, bank/card issuer, affected product SKUs, employment window and data-breach exposure. The service returns a ranked list of eligible settlements with estimated payout bands. In 2024 PayMe expanded this logic to include mass tort and personal injury matching — our implementation mirrors that addition.
Programmatic claim submission per settlement: our source code handles form schema discovery, field mapping (claimant name, address, proof uploads), CAPTCHA handoff and idempotent retries so a partner app can file hundreds of claims per user without triggering duplicate submissions.
Structured tracking of filed, approved, rejected and paid status per claim, mapped to ISO 8601 timestamps and payout method (check, ACH, Zelle, PayPal, gift card). Deliverable includes a Postgres schema and webhook dispatcher for downstream CRMs.
Aggregates 50-state unclaimed-funds databases behind one query. Returns account holder, originating entity, dollar range (states publish bands, not exact amounts) and the official state claim URL — matching PayMe's built-in unclaimed property tool without re-scraping each state treasury site.
Wraps PayMe's Gmail bill-scan output and 2025 subscription-cancellation module into a GET /subscriptions feed: merchant, renewal cadence, average charge, last charged date. Used for Rocket Money-style dashboards and bill negotiation flows with documented 30–60% savings profiles.
Surfaces tax credit eligibility (EITC, child tax credit, state-specific credits) and recoverable gift-card balances. Returns a simple recoverable_total estimate per user — a concrete hook for neobanks running "found money" notifications at statement close.
The table below maps the OpenData surface we can expose from PayMe - Claim Your Money. Every row has been cross-checked against the public app description, App Store listing and third-party reviews of the 2025 build.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| Settlement eligibility matches | AI matching questionnaire + 5,000+ active settlement index | Per-user list, ranked by payout band and deadline | Consumer-refund dashboards, fintech "found money" widgets |
| Class action claim submissions | Claim filing flow (automated forms) | One record per claim; status + submission timestamp | Compliance audit trail, lead tracking for legal tech |
| Payout events | Payout tracking screen | filed → approved → paid transitions, amount, payment method | Ledger reconciliation, cashflow forecasting, push notifications |
| Unclaimed property records | 50-state unclaimed property scanner | Holder name, state, originating entity, dollar band | Asset recovery services, KYC enrichment, wealth-advisor tools |
| Bill overcharges & negotiable bills | Gmail bill scan + negotiation module | Merchant, charge amount, anomaly flag, savings estimate | Personal finance coaches, neobank overdraft-prevention |
| Subscriptions (2025 beta) | Subscription discovery feature | Merchant, cadence, last charge, cancellation URL | Rocket Money / Trim-style cancel flows, spend analytics |
| Gift card balances | Gift card recovery tool | Retailer, remaining balance, expiry | Rewards reconciliation, wallet apps |
| Tax credit eligibility | Tax credit checker | Credit type, estimated amount, tax year | Tax prep integrations, payroll benefits platforms |
A challenger bank wants a "You may be owed $X" card on its dashboard. Business context: activation and retention. Data / API involved: POST /eligibility/match with the user's ZIP, past 24-month merchants and breach exposure; the response drives a UI card. OpenFinance mapping: this is a consumer-side OpenData read — the app is the primary source, the bank is a consent-based consumer.
A mass tort firm ingests /settlements/search?category=mass_tort to identify active cases and correlates payouts with ZIP codes. Flow: settlement metadata → firm's CRM → outreach. This avoids using personally identifiable information — only aggregated settlement metadata flows, aligning with the SettlementRadar API model we benchmark against.
A TurboTax-style app pulls /payouts?tax_year=2025 so settlement receipts (often reportable as miscellaneous income above $600) land directly in the user's return. Fields: payout_amount, payer_name, payment_method, issued_at. Maps to OpenFinance "transaction categorisation" primitive.
A small-business SaaS tool imports the subscription feed to flag duplicate or dormant tools (e.g. two overlapping CRMs). Data: subscriptions[] with cadence, last_charge and cancellation_url. The feed avoids PSD2-style bank aggregation — it ships at the email/app layer, which is cheaper and covers non-card charges.
RIAs enrich their client onboarding with a 50-state sweep: POST /unclaimed/search with first/last name, past addresses and DOB. Returns state-by-state hits. Business context: advisors turn "found money" into AUM conversations. Compliance: requests are logged and require written client consent, aligning with state treasury claim processes.
POST /api/v1/payme/eligibility/match
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"user_ref": "u_8fa31c",
"residence_state": "CA",
"issuers": ["chase", "apple_card"],
"breach_exposure": ["tmobile_2023", "att_2024"],
"lookback_months": 36
}
200 OK
{
"matches": [
{
"settlement_id": "stl_9c21e",
"title": "T-Mobile 2023 data breach",
"category": "data_breach",
"deadline": "2026-06-30",
"payout_band_usd": [25, 350],
"required_proof": ["account_number", "id_photo"],
"claim_url": "https://..."
}
],
"next_cursor": "eyJwYWdlIjoy..."
}
POST https://partner.example.com/hooks/payme
X-PayMe-Signature: t=1735689600,v1=9ab8...
Content-Type: application/json
{
"event": "payout.paid",
"claim_id": "clm_4f21a",
"settlement_id": "stl_9c21e",
"amount_usd": 147.25,
"method": "ach",
"paid_at": "2026-04-18T14:02:11Z",
"idempotency_key": "clm_4f21a:paid"
}
// Recommended handling: verify HMAC, upsert on idempotency_key,
// fan out to ledger + notification service, return 2xx < 3s.
GET /api/v1/payme/subscriptions?user_ref=u_8fa31c
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"subscriptions": [
{"merchant":"Netflix","cadence":"monthly","last_charge_usd":15.49,
"last_charged_at":"2026-04-02","cancel_url":"https://www.netflix.com/cancelplan"},
{"merchant":"Adobe CC","cadence":"annual","last_charge_usd":659.88,
"last_charged_at":"2025-11-14","cancel_url":"https://account.adobe.com/plans"}
],
"detected_at":"2026-04-20T09:00:00Z"
}
Every integration ships against U.S. consumer-protection baselines: the FTC Act §5 (unfair or deceptive acts and practices), California Consumer Privacy Act (CCPA/CPRA), and state unclaimed property statutes administered by each state treasurer. Where users reside in the EU or UK, deliverables extend to GDPR and UK DPA 2018, including Article 6 lawful-basis documentation and Article 15 data-subject access flows.
We do not build scraping tools that bypass authentication. Every PayMe integration uses the end-user's own consent — either via the app's documented OAuth-style session, a signed data export, or a server-to-server key issued under a written agreement. Logs retain consent events for a configurable window (default: 18 months, aligned with CCPA record-keeping).
Only fields required for the stated use case are transferred. For example, settlement matching ships ZIP-level residency, not full address; payout webhooks ship banded amounts when downstream use does not need the exact sum. All payloads are TLS 1.2+; at-rest data is AES-256 encrypted with per-tenant KMS keys.
A typical deployment follows a four-node pipeline. Each hop is independently auditable and ships with Prometheus metrics.
com.kinetic.payme.app + iOS id6749705807) bridges credentials to our ingestion tier.PayMe - Claim Your Money is positioned for U.S. consumers who have been touched by major data breaches, product recalls and consumer-goods class actions. Third-party reviews place its audience primarily in the 25–55 age band, with the highest concentration in California, Texas, Florida, New York and Illinois — states with large unclaimed-property balances. Distribution is mobile-first (iOS App Store listing id6749705807 with a reported 4.8 rating across 34,000+ reviews, plus Android via com.kinetic.payme.app). Premium tiers are $29.99/year (Android) and $39.99/year (iOS), indicating a self-serve B2C monetisation model. For integration buyers, the logical counterparties are U.S. neobanks, consumer-refund aggregators, legal-tech platforms, RIAs and personal-finance dashboards seeking to surface "found money" inside existing user journeys.
Click any thumbnail to open the full-resolution screen. The lightbox closes on click or with the Esc key.
Users and product teams working with PayMe often have parallel integration needs across the wider consumer-refund, unclaimed-property and subscription-audit ecosystem. The apps below appear repeatedly in category reviews alongside PayMe and shape the integration surface our studio can deliver — unified exports, cross-app reconciliation and joint payout ledgers.
/api/v1/data/settlements). Used as an upstream feed when PayMe-style consumer apps need fresh court-record metadata.We are an independent technical studio focused on App interface integration, authorized API integration and OpenData / OpenFinance delivery. The team combines former engineers from payment processors, challenger banks, protocol-analysis labs and cloud security firms, and has shipped integrations covering finance, e-commerce, travel, OTT and now consumer-refund categories such as PayMe - Claim Your Money.
Send us the target app name and your data requirements (endpoints, expected volume, region). We reply within one business day with a fixed quote or a pay-per-call rate card.
NDAs available on request. We never share client scope, source code or reverse-engineering notes between projects.
What do you need from me to start?
How do you handle PayMe ToS and consumer consent?
What if PayMe changes its protocol?
Do you bill per call or per project?
Tagline: Get Paid From Class Action Lawsuits — No Lawyer Needed. Every year, billions of dollars from class action settlements go unclaimed. PayMe helps users claim their share in seconds: no paperwork, no legal knowledge, just money the user may not have known they were owed.
Key features (per the official description and 2024–2025 expansions):
Why PayMe: users don't need a law degree or an attorney. PayMe makes it simple for everyday people to collect money from companies that broke the rules. The mission is to help users get what's theirs — fast, safely and with zero legal hassle.
Subscription: PayMe Pro unlocks full access to claims and payout tracking. Auto-renewable at $29.99 / year (Android) and $39.99 / year (iOS). Platforms: Android (com.kinetic.payme.app) and iOS (id6749705807). Rating 4.8 with 34,000+ reviews reported on iOS.
Disclaimer: PayMe, Payout, Settlemate, Compensate, Rocket Money, Trim, Monarch Money, YNAB, ReSubs, PocketGuard, Origin and SettlementRadar are trademarks of their respective owners. This page describes technical integration services delivered under explicit end-user authorization and does not imply affiliation or endorsement.