NexFlow Pulse is a cloud scheduler for agents and APIs. It lets you programmatically create and manage HTTP jobs that run on precise intervals or cron expressions, with per‑execution billing (0.0015 USDC) and x402‑ready, wallet‑paid API access for autonomous agents. Developers can use Pulse to trigger webhooks, background tasks, and agent workflows
nexflow-pulse-docs is an early-stage project in the AI payments / x402 ecosystem, focused on agents, ai, ai-agents, api. It currently has 0 GitHub stars and 0 forks, and sits alongside related tools like dna-x402, x402, mcp-client, x402, crypto-sentiment-api, x402-sdk.
Cloud Scheduler for Agents and APIs
Schedule HTTP calls with per-execution billing (0.0015 USDC) and x402-ready payments.
NexFlow Pulse is a production-grade HTTP scheduler designed for:
| Feature | Description |
|---|---|
| Interval Scheduling | Run jobs every N seconds (min: 1 second) |
| Cron Scheduling | Standard cron expressions for complex schedules |
| Automatic Retries | Configurable retry count with exponential backoff |
| Execution Tracking | Full history of job runs with HTTP status, latency, and errors |
| Test Runs | Fire a job immediately without affecting its schedule |
| x402 Ready | Supports wallet-based payments for autonomous agents |
Sign up at nexflowapp.app to get your API key.
curl -X POST https://api.nexflowapp.app/v1/pulse/jobs \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"targetUrl": "https://httpbin.org/post",
"method": "POST",
"scheduleType": "interval",
"intervalSeconds": 60,
"body": { "message": "Hello from Pulse!" }
}'
Response:
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "active",
"nextRunAt": "2026-01-09T22:00:00.000Z",
"billableExecutions": 0,
"estimatedCostUsdc": 0
}
curl https://api.nexflowapp.app/v1/pulse/jobs/550e8400-e29b-41d4-a716-446655440000/runs \
-H "Authorization: Bearer YOUR_API_KEY"
| Metric | Cost |
|---|---|
| Per execution | $0.0015 USDC |
| Storage | Free |
| API calls | Free |
Only successful and failed executions are billed. Paused jobs incur no charges.
Schedule callbacks for AI agents participating in task markets like Virtuals Protocol ACP:
{
"targetUrl": "https://my-agent.example.com/callback",
"method": "POST",
"scheduleType": "interval",
"intervalSeconds": 300,
"body": { "action": "check_tasks" }
}
Ensure your services stay healthy with regular heartbeat checks:
{
"targetUrl": "https://my-service.example.com/health",
"method": "GET",
"scheduleType": "interval",
"intervalSeconds": 60
}
Generate daily reports at a specific time:
{
"targetUrl": "https://api.example.com/generate-report",
"method": "POST",
"scheduleType": "cron",
"cronExpression": "0 9 * * *"
}
https://api.nexflowapp.app/v1/pulse
All requests require an API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Or use the X-API-Key header:
X-API-Key: YOUR_API_KEY
| Limit | Value |
|---|---|
| Jobs per account | 1,000 |
| Minimum interval | 1 second |
| Request body size | 64 KB |
| Custom headers size | 8 KB |
This documentation is licensed under MIT.
Built with ❤️ by the NexFlow team
DNA — Payment rails for AI agents. x402 micropayment protocol on Solana. Netting, transfer, stream settlement. Receipt anchoring on-chain.
💸 Simplify payments with x402, an open protocol for fast, fee-free digital dollar transactions. Experience seamless integration and instant settlements.
Discover and pay AI agents on nullpath's marketplace via MCP. x402 micropayments with USDC.
💸 Enable seamless, low-cost digital dollar payments with x402—zero fees, instant settlement, and no high minimums for all users.
No description.
x402 SDK for AI agent payments - Base & Solana USDC micropayments
The agent-native LLM router for autonomous agents. 55+ models (8 free), <1ms local routing, USDC payments on Base & Solana via x402.
The AI agent with a wallet — spends USDC autonomously to get real work done. Apache-2.0, TypeScript.
The first agentic payment network: policy-controlled, gasless, and real money-ready. OmniClaw CLI + Financial Policy Engine let autonomous agents pay and earn safely at machine speed.
An open SDK for agentic payments. Let AI agents make payments, hold funds, and move money across chains with policy enforcement and human approval built in.
x402 Ecosystem Explorer
🚀 Curated list of x402 resources: HTTP 402 Payment Required protocol for blockchain payments, crypto micropayments, AI agents, API monetization. Includes SDKs (TypeScript, Python, Rust), examples, facilitators (Coinbase, Cloudflare), MCP integration, tutorials. Accept USDC payments with one line of code. Perfect for AI agent economy.