
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@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.
The npm package @payweave/fastify receives a total of 182 weekly downloads. As such, @payweave/fastify popularity was classified as not popular.
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.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

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.