PayMe - Claim Your Money API integration & class action settlement OpenData services

Authorized protocol analysis, eligibility matching endpoints, payout tracking webhooks and unclaimed property feeds — ready-to-ship source code for consumer refund and recovery stacks.

From $300 · Pay-per-call API available
OpenData · Consumer OpenFinance · Class action settlement APIs · Protocol analysis

Turn PayMe's 5,000+ settlement matches into a programmable consumer-refund data layer

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.

Settlement eligibility API — query PayMe-style match results by category (data breach, employment, consumer goods) with payout estimate, deadline and required proofs, instead of scraping court notices manually.
Payout timeline webhooks — subscribe to claim state changes (filed → approved → paid) and surface them inside your own banking app, CRM or spreadsheet for reconciliation.
Unclaimed property & refund export — 50-state unclaimed funds search, mass tort leads, Gmail bill-scan findings and subscription discovery exported as JSON, CSV or direct Postgres feed.

Feature modules we deliver

Eligibility matching service

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.

Claim filing automation

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.

Payout tracking & ledger

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.

Unclaimed property scanner

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.

Subscription & bill intelligence

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.

Tax credit & refund discovery

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.

Data available for integration

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 typeSource screen / featureGranularityTypical use
Settlement eligibility matchesAI matching questionnaire + 5,000+ active settlement indexPer-user list, ranked by payout band and deadlineConsumer-refund dashboards, fintech "found money" widgets
Class action claim submissionsClaim filing flow (automated forms)One record per claim; status + submission timestampCompliance audit trail, lead tracking for legal tech
Payout eventsPayout tracking screenfiled → approved → paid transitions, amount, payment methodLedger reconciliation, cashflow forecasting, push notifications
Unclaimed property records50-state unclaimed property scannerHolder name, state, originating entity, dollar bandAsset recovery services, KYC enrichment, wealth-advisor tools
Bill overcharges & negotiable billsGmail bill scan + negotiation moduleMerchant, charge amount, anomaly flag, savings estimatePersonal finance coaches, neobank overdraft-prevention
Subscriptions (2025 beta)Subscription discovery featureMerchant, cadence, last charge, cancellation URLRocket Money / Trim-style cancel flows, spend analytics
Gift card balancesGift card recovery toolRetailer, remaining balance, expiryRewards reconciliation, wallet apps
Tax credit eligibilityTax credit checkerCredit type, estimated amount, tax yearTax prep integrations, payroll benefits platforms

Typical integration scenarios

1. Neobank "found money" module

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.

2. Legal tech lead generation

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.

3. Tax / accounting reconciliation

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.

4. Subscription audit for SMBs

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.

5. Unclaimed property enrichment for wealth advisors

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.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger spec covering every PayMe module we expose
  • Protocol and auth flow report (login → OAuth / session → questionnaire → claim file → payout webhook)
  • Runnable source code in Python (FastAPI) and Node.js (NestJS) with Docker images
  • Postman collection, Pytest / Jest test harness and recorded HAR fixtures
  • Compliance pack: consent templates, CCPA/GDPR data-subject flows, retention matrix
  • 30-day warranty plus optional pay-per-call hosted tier (no infra for the client)

API example — settlement eligibility

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

API example — payout webhook

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.

API example — subscription discovery

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

Compliance & privacy

Regulatory alignment

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.

Authorized-access posture

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).

Data minimisation

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.

Data flow / architecture

A typical deployment follows a four-node pipeline. Each hop is independently auditable and ships with Prometheus metrics.

  1. Client App / PayMe session — end-user authorises data access; mobile SDK (Android com.kinetic.payme.app + iOS id6749705807) bridges credentials to our ingestion tier.
  2. Ingestion & normalisation API — receives raw eligibility matches, claims, payouts and bill-scan events, normalises to an internal schema, deduplicates via idempotency keys.
  3. Storage — Postgres for structured records, S3 for claim proofs, with per-tenant encryption and retention windows. Optional ClickHouse for analytical roll-ups.
  4. Egress — API / Webhook / CSV — partners consume via REST, Kafka, webhooks or signed CSV exports. Each consumer has its own scope and rate limit.

Market positioning & user profile

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.

Screenshots

Click any thumbnail to open the full-resolution screen. The lightbox closes on click or with the Esc key.

PayMe screenshot 1 — class action settlement matching
PayMe screenshot 2 — payout tracking dashboard
PayMe screenshot 3 — unclaimed property search
PayMe screenshot 4 — bill negotiation and subscriptions

Similar apps & integration landscape

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.

Payout — Get Paid from Class Action Settlements
200K+ downloads, 300K+ claims filed. Holds per-user claim records and payout amounts. Teams often want unified transaction exports that merge Payout and PayMe claim ledgers into a single feed.
Settlemate
4.6-star Android app with instant eligibility matching and smart notifications. Stores settlement/claim metadata and push subscriptions — natural counterpart to PayMe's eligibility API for comparison dashboards.
Compensate
Tracks 1,200+ settlements, 1M+ members, $80M+ claimed. Exposes settlement catalog and user-level claim status; integrates well with PayMe's broader 5,000+ settlement index for deduplication.
SettlementRadar
A data-licensing API tracking 639+ settlements with REST endpoints (/api/v1/data/settlements). Used as an upstream feed when PayMe-style consumer apps need fresh court-record metadata.
Rocket Money
Bank-linked subscription cancellation and bill negotiation. Holds transactions, subscriptions and negotiated savings records — overlaps with PayMe's 2025 subscription module, making joint exports attractive.
Trim
Subscription cancellation and bill-negotiation service, usually integrated via email and banking data. Adjacent to PayMe's Gmail bill-scan flows for unified "money-back" dashboards.
Monarch Money
Comprehensive personal finance platform with subscription detection, budgeting and net-worth tracking. Ideal downstream consumer of PayMe's payout events to categorise "found money" within a user's full financial picture.
YNAB (You Need A Budget)
Active budgeting platform. Consumes external transaction feeds — PayMe payouts can be injected as one-off inflow categories for zero-based budgeters.
ReSubs
Privacy-first subscription tracker that accepts manual entries, CSV imports and Gmail scans. Similar data model to PayMe's subscription beta, enabling cross-tool migrations.
PocketGuard
Low-cost budgeting app with subscription tracking. Typical destination for PayMe's bill-overcharge and recoverable-balance events.
Origin
Full financial platform combining budgeting, tax prep and wealth tracking. Benefits from PayMe's tax-credit eligibility feed to pre-populate filing workflows.

About our studio

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.

  • Financial & banking apps (transactions, statements, transfers)
  • E-commerce, food delivery and retail (orders, payments, sync)
  • Hotel, travel, mobility (bookings, itineraries, refunds)
  • Social, OTT media and dating (auth, messaging, profiles)
  • Consumer refund & unclaimed property aggregation (PayMe, Payout, Compensate, Settlemate)
  • Source code delivery from $300 — runnable API source + docs, paid on satisfaction
  • Pay-per-call hosted API — no upfront cost, pay only for successful calls

Contact

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.

Open contact page

NDAs available on request. We never share client scope, source code or reverse-engineering notes between projects.

Engagement workflow

  1. Scope confirmation — we lock target app, modules (eligibility, claim filing, payouts, unclaimed property, subscriptions) and deployment mode.
  2. Protocol analysis & API design — 2–5 business days: static + dynamic analysis of PayMe clients, OpenAPI draft, compliance checklist.
  3. Build & validation — 3–8 business days: runnable source in Python + Node, fixture-backed tests, sample deployment.
  4. Documentation & handover — 1–2 business days: quickstart, Postman collection, compliance pack, optional live walk-through.
  5. Total first delivery — typically 5–15 business days. Third-party reviews (e.g. Play Store listing changes) can extend timelines.

FAQ

What do you need from me to start?

The app name (PayMe - Claim Your Money), target endpoints (e.g. eligibility matching or payout feed), projected call volume and target regions. If you already have sandbox credentials or partner agreements, share those too.

How do you handle PayMe ToS and consumer consent?

All PayMe integrations require the end user's explicit authorisation. We never embed credentials harvested from third parties and we disable any flow that conflicts with documented ToS during the compliance review phase.

What if PayMe changes its protocol?

Our deliverables include regression fixtures and a 30-day maintenance window. Longer-term retainers are available for clients who need continuous parity as PayMe ships new modules (e.g. the 2025 subscription cancellation feature).

Do you bill per call or per project?

Both. Source-code delivery starts at $300 and is paid after acceptance. Hosted pay-per-call pricing starts in the low single-cent range per successful call with no monthly minimum.
📱 Original app overview — PayMe - Claim Your Money (appendix)

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):

  • Find eligible class action claims instantly — a short questionnaire matches the user with active lawsuits they qualify for; no legal advice required.
  • File claims in seconds — PayMe handles the confusing legal forms and submission process so the user can sit back and get paid.
  • Track payouts — see exactly when claims are filed, approved and paid.
  • Unclaimed property search across all 50 U.S. states — scans state treasury databases for dormant accounts, refunds and uncashed checks.
  • Mass tort & personal injury matching — expanded in 2024 beyond basic class actions.
  • Gmail bill scanning — flags overcharges and billing errors from inbox receipts.
  • Gift card recovery — locates forgotten gift-card balances.
  • Tax credit checks — estimates eligible federal and state credits.
  • Coming soon — cancel unwanted subscriptions — identifies and cancels recurring charges, saving users more each month.

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.