
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@payweave/fastify
Advanced tools
Fastify plugin for PayWeave - accept per-request USD micropayments on any Fastify route.
Fastify plugin for PayWeave - accept per-request USD micropayments on any Fastify route.
npm install @payweave/fastify
import { Payweave } from '@payweave/fastify';
import Fastify from 'fastify';
const app = Fastify();
const payweave = new Payweave(
process.env.PAYWEAVE_APP_ID!,
process.env.PAYWEAVE_APP_SECRET!
);
app.get(
'/api/weather',
{ preHandler: payweave.charge({ price: '0.001', description: 'Weather API' }) },
(req, reply) => {
reply.send({ temp: 72, unit: 'F' });
}
);
app.listen({ port: 3000 });
new Payweave(appId, appSecret, baseUrl?)| Parameter | Type | Description |
|---|---|---|
appId | string | Your app key ID |
appSecret | string | Your app secret |
baseUrl | string? | API base URL (defaults to https://api.payweave.app) |
payweave.charge(options)Returns a Fastify preHandler hook (req: FastifyRequest, reply: FastifyReply) => Promise<void>.
| Option | Type | Description |
|---|---|---|
price | string | (req: FastifyRequest) => string | Promise<string> | USD price per request |
description | string? | Human-readable description |
meta | Record<string, string>? | API metadata for agent discovery |
Note: Use
payweave.charge()as apreHandlerin Fastify's route options.
app.get(
'/api/search',
{ preHandler: payweave.charge({ price: '0.01' }) },
(req, reply) => {
reply.send({ results: [] });
}
);
app.post(
'/api/generate',
{
preHandler: payweave.charge({
price: (req) => {
const body = req.body as { premium?: boolean };
return body.premium ? '0.05' : '0.01';
},
description: 'Text generation',
}),
},
(req, reply) => {
reply.send({ text: 'generated content' });
}
);
app.post(
'/api/data',
{
preHandler: [
authenticate,
payweave.charge({ price: '0.01' }),
],
},
(req, reply) => {
reply.send({ data: 'paid content' });
}
);
app.post(
'/api/sentiment',
{
preHandler: payweave.charge({
price: '0.005',
description: 'Sentiment analysis',
meta: {
'method': 'POST',
'input.content-type': 'application/json',
'input.schema': '{"type":"object","properties":{"text":{"type":"string"}}}',
'output.schema': '{"type":"object","properties":{"score":{"type":"number"}}}',
},
}),
},
(req, reply) => {
reply.send({ score: 0.85 });
}
);
app.get('/api/weather', { preHandler: payweave.charge({ price: '0.001' }) }, weatherHandler);
app.get('/api/forecast', { preHandler: payweave.charge({ price: '0.005' }) }, forecastHandler);
app.post('/api/analyze', { preHandler: payweave.charge({ price: '0.01' }) }, analyzeHandler);
402 Payment Required and pricing infoAuthorization: Payment <credential>Payment-Receipt headerMIT
FAQs
Fastify plugin for PayWeave - accept per-request USD micropayments on any Fastify route.
We found that @payweave/fastify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.