Welcome to Fast
Who Fast Is For
AI and Automation Developers
// Agent pays for compute, receives result
await f.send({ to: computeAgent, amount: '0.10' });
const output = await requestCompute(task);
// Agent checks its earnings
const { amount } = await f.balance();API Developers
// Seller charges $0.01 per request — returns HTTP-402 Payment Required if unpaid
app.use(paymentMiddleware(myAddress, { 'GET /api/*': { price: '$0.01', network: 'fast' } }, facilitator));
// Buyer handles the 402, signs payment, and retries — automatically
const { body } = await x402Pay({ url: 'https://api.seller.com/api/data', wallet });