REST API · WEBHOOKS · v1

MYM data,
finally programmable.

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.

Connect a creator in one click — no password sharing.
bash — api.mym-api.com
$ curl https://api.mym-api.com/v1/connections/135/transactions \ -H "Authorization: Bearer mymk_live_••••4f2a" { "data": [{ "id": "mym_67652111", "type": "subscription", "amount": 1246, "currency": "EUR", "fan": { "id": 61819, "handle": "@julie_p" }, "occurred_at": "2026-07-20T09:50:31Z" }], "has_more": true }
Capabilities

One key. Every signal MYM keeps to itself.

Each connected creator account exposes the same clean, documented surface — no HTML scraping to babysit on your side.

/transactions

Transactions feed

Subscriptions, PPV and tips with real value, currency and timestamp — MYM's income ledger, normalized.

/subscribers

Subscribers & fans

Full roster across active, inactive, interested and blocked, plus per-fan join and renewal dates.

/balance

Payout balance

Confirmed and awaiting amounts, read straight from the source — the exact figure MYM shows the creator.

/tracking-links

Native tracking links

Create MYM's own promo links and read cumulative clicks, conversions and revenue for deterministic attribution.

webhooks

Real-time webhooks

Signed transaction.created and subscriber.created events pushed the moment they land.

extension

One-click connect

Onboard any creator with our browser extension. No credentials ever touch your servers.

Get started

Live in three steps.

01 —

Connect an account

Click connect in the browser extension. We capture the session securely and mint a connection — no password handoff.

02 —

Grab your API key

Each key is scoped and revocable. Rotate anytime, one per environment, with per-connection access control.

03 —

Call the API

Hit REST endpoints or subscribe to webhooks. JSON everywhere, cursor-paginated, typed errors, sane rate limits.

API reference

A surface you already know how to use.

Predictable resource routes under /v1. Authenticate with a bearer token, scope calls to a connection id.

GET/v1/connectionslist connections
GET/v1/connections/{id}/transactionsincome feed
GET/v1/connections/{id}/subscribersfan roster
GET/v1/connections/{id}/balancepayout balance
GET/v1/connections/{id}/fans/{fanId}fan detail
POST/v1/connections/{id}/tracking-linkscreate link
POST/v1/webhooksregister endpoint
node · webhook handler
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);
});

Build on MYM today.

Early access is rolling out to agencies and developers. Bring your creators, leave the reverse-engineering to us.