Weather
一个面向 Data & APIs 场景的 Agent 技能。原始说明:Get current weather and forecasts (no API key required).
一个面向 Data & APIs 场景的 Agent 技能。原始说明:Creates paid API endpoints using the x402 micropayment protocol. Wraps existing Zo skills and tools behind per-request payment walls. Each call costs $0.001–...
name: x402-monetize
version: 1.0.13
description: |
Creates paid API endpoints using the x402 micropayment protocol. Wraps existing
Zo skills and tools behind per-request payment walls. Each call costs $0.001–$0.10,
settled on-chain. No crypto custody risk — the x402 facilitator handles payment.
compatibility: Zo Computer, Node.js, @x402/core, @x402/express
metadata:
author: ssyopros.zo.computer
category: monetization
tags: x402, micropayments, paid-api, passive-# x402-monetize
Create paid API endpoints that earn micropayments every time they're called.
cd /home/workspace/MoneyMachine/x402_server
node index.js
| Endpoint | Price | Description |
|---|---|---|
| /api/signals/:ticker | $0.01 | Options trading signal (bull/bear/neutral) |
| /api/whale/:ticker | $0.01 | Whale flow alert (size, direction, conviction) |
| /api/wave/:ticker | $0.01 | Elliott Wave count + Fibonacci levels |
| /api/maxpain/:ticker | $0.005 | Max pain level + strike wall zones |
| /api/backtest | $0.05 | Run options strategy backtest |
| /api/services | free | List all paid endpoints |
const { paymentMiddleware } = require('@x402/express');
// Add to index.js:
app.get('/api/my-endpoint', paymentMiddleware(), async (req, res) => {
// Your logic here
res.json({ result: 'paid data', price: '$0.01' });
});
/api/signals/AAPL402 Payment Required with payment details