x402 has a single point of failure: one facilitator can cut you off. We solve that on BNB with a network of independent, slashable facilitators. Alpha is live — it pays gas, settles USDx on-chain, and unlocks the API with no tx or BNB from the caller.
A caller hits your endpoint. We handle pricing, payment, on-chain settlement, and proof — then you return the real data. Gas is abstracted. Friction is zero.
The merchant doesn’t front gas. The caller doesn’t hold BNB. A facilitator moves value on-chain, proves settlement, and unlocks the response in one path.
Facilitators are slashable. Every settlement is provable.
VERIFIED
TESTNET
NO ACCOUNT · NO BALANCE · NO SUBSCRIPTION
Machine-to-machine settlement • BNB testnet • USDx
Alpha is already settling USDx on BNB testnet. Beta and Gamma join next. They stake FAC, pay gas for you, and get slashed if they lie. You just call the API.
Pay-per-request • Permit-based spend • Gasless callers
The caller just hits your API. You quote a price. A bonded facilitator settles USDx on BNB, proves it, and you unlock the real response. No accounts. No balances. Nothing custodial.
Agent hits /api/secret. You respond 402 with a USDx price and a list of facilitators willing to settle on their behalf.
Caller (or their agent) signs permit() (EIP-2612 style). No BNB needed. This authorizes a single facilitator (e.g. Alpha) to move exactly that USDx, exactly once.
Alpha pays gas on BNB, settles USDx on-chain to you, and can be slashed if they cheat. Once proof is verified, you return 200 OK with the real payload.
BNB-native machine-to-machine settlement • USDx • Slashable facilitators
Drop our 402 handler in front of any route. Your endpoint starts charging per request. You get paid in USDx on BNB. We handle pricing, settlement, and proof. You just return data.
if (!paid) {
return 402, {
price: "1 USDx",
asset: USDX_ADDRESS,
facilitators: FACILITATORS
}
}
return 200, { alpha: "..." }402 required → permit() signed → 200 OK unlocked
Metered endpoints • USDx settlement • Gasless callers
FAC isn’t “a token someday.” It’s what you have to stake to touch settlement. You post collateral, you pay gas for callers, you earn the fee on every paid request. If you lie or fail to settle, you get slashed. That’s how we replace “one middleman” with a marketplace.
bonded operator • pays gas for caller • can be removed if they cheat
FAC makes settlement permissionless. Anyone who posts the bond can start processing pay-per-request traffic for any API, instantly, without the merchant running gas or custody.
That means the network scales by adding new bonded operators, not by trusting one middleman forever.
Permissionless onboarding • Slash-enforced honesty • You pick who settles your flow