GET /admin/monetization/platform-fee-summary returns a network-wide rollup of
platform-fee revenue (subscription + x402 + capital-markets, where enabled) plus a
shop-activation method breakdown. The endpoint is the data source for the operator
Pillar 5 revenue dashboard.
This endpoint requires:
- JWT with
role = SUPER_ADMIN IpAllowlistGuard— caller IP must be in the operator allowlistGeoBlockGuard— caller geo must be permitted
403. Missing or invalid JWT returns 401.GET /admin/monetization/platform-fee-summary
Authentication
Obtain a SUPER_ADMIN JWT via
POST /merchant/admin/login — see
Authentication.
Query parameters
None. The window is fixed (trailing 30 / 365 days, snapshot atasOf).
Example
Response — 200 OK
Fields
Errors
Notes
- ADMIN-comp policy. Shops activated via the SUPER_ADMIN console (method =
ADMIN) are comp / waived and never contribute tomrrUsdCents,arrUsdCents,revenue30dUsdCents, orrevenue365dUsdCents. They DO appear inactivationMethodMixso operators can see the comp count. - Fail-open semantics. If a constituent rollup query fails (subscription store,
x402 settlement log, capital-markets fee aggregator), the endpoint returns
0for that constituent (and[]foractivationMethodMixif the activation source rollup fails) rather than propagating the error. The endpoint still returns200 OKwith the partial snapshot. Inspect server logs / Sentry for the underlying failure. - Snapshot, not realtime.
asOfreflects the server clock when the rollup ran. Constituent stores are read sequentially; values are coherent within a single request but may drift between consecutive calls. - Currency. All monetary fields are USD cents, integer. FX-conversion uses the same snapshot table as the unified-transaction projection (see Network Health KPIs — GMV).
Related
- x402 Earnings — per-merchant x402 settlement rollup.
- Capital Markets Fees — Capital Markets marketplace fee schedule preview.
- Set Merchant Acquisition Source — operator-only setter for the activation-source enum surfaced in
activationMethodMix. - Network Health KPIs — GMV / orders / refund-rate companions.