MYM ships no public API — so we built one. Transactions, subscribers, payout balance and native tracking links from any creator account, as clean JSON and real-time webhooks.
Each connected creator account exposes the same clean, documented surface — no HTML scraping to babysit on your side.
Subscriptions, PPV and tips with real value, currency and timestamp — MYM's income ledger, normalized.
Full roster across active, inactive, interested and blocked, plus per-fan join and renewal dates.
Confirmed and awaiting amounts, read straight from the source — the exact figure MYM shows the creator.
Create MYM's own promo links and read cumulative clicks, conversions and revenue for deterministic attribution.
Signed transaction.created and subscriber.created events pushed the moment they land.
Onboard any creator with our browser extension. No credentials ever touch your servers.
Click connect in the browser extension. We capture the session securely and mint a connection — no password handoff.
Each key is scoped and revocable. Rotate anytime, one per environment, with per-connection access control.
Hit REST endpoints or subscribe to webhooks. JSON everywhere, cursor-paginated, typed errors, sane rate limits.
Predictable resource routes under /v1. Authenticate with a bearer token, scope calls to a connection id.
app.post("/mym/webhook", (req, res) => { const evt = req.body; if (evt.type === "transaction.created") { const { amount, currency, fan } = evt.data; // real revenue → fire your Meta CAPI Purchase fireConversion(fan.id, amount, currency); } res.sendStatus(200); });
Early access is rolling out to agencies and developers. Bring your creators, leave the reverse-engineering to us.