Pylon AI — Pay-per-request APIs for the agent economy. Powered by x402 micropayments on Base.
pylon is an early-stage JavaScript project in the AI payments / x402 ecosystem, focused on ai-agents, ai-tools, api-gateway, base. It currently has 0 GitHub stars and 0 forks, and sits alongside related tools like APIbase, mcp-proxy, mcp-client, p402-protocol, xcatcher-mcp-manifest, Agent402.
Pay-per-request APIs for AI agents. No API keys. No subscriptions.
Utility APIs that AI agents can call and pay for instantly with USDC micropayments via x402.
No sign-up. No billing dashboard. Just HTTP.
Website · MCP Server · Smithery · Twitter
1. Your agent calls a Pylon API endpoint
2. Gets back HTTP 402 with payment details
3. Pays $0.01-0.05 USDC on Base, retries → gets the response
x402-compatible clients handle this automatically. One round-trip.
| API | What it does | Price |
|---|---|---|
| Screenshot | Full-page screenshot of any URL | $0.01 |
| Web Scrape | Extract clean text/markdown from URLs | $0.01 |
| Web Extract | Structured data extraction from web pages | $0.01 |
| Search | Web search results | $0.01 |
| PDF Parse | Extract text + metadata from PDFs | $0.02 |
| OCR | Image → text via Tesseract | $0.03 |
| Translate | Translate text between languages | $0.005 |
| Email Validate | MX + SMTP verification | $0.005 |
| Domain Intel | WHOIS, DNS, SSL, tech stack | $0.01 |
| DNS Lookup | DNS record queries | $0.005 |
| IP Geolocation | IP → location, ISP, timezone | $0.005 |
| QR Code | Generate QR code images | $0.005 |
| Image Resize | Resize, crop, format convert | $0.01 |
| Markdown → PDF | Render markdown as styled PDF | $0.02 |
| HTML → PDF | Full Chromium HTML rendering | $0.02 |
| Doc Gen | Generate documents from templates | $0.02 |
| Data Formatter | Convert between JSON, CSV, XML, YAML | $0.005 |
| URL Shortener | Create short URLs | $0.005 |
| File Storage | Temporary file hosting | $0.005 |
| Email Send | Transactional email delivery | $0.01 |
All APIs run on Fly.io with scale-to-zero. No third-party API dependencies.
# Take a screenshot (will return 402 — use an x402 client for auto-payment)
curl -X POST https://pylon-screenshot-api.fly.dev/screenshot \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "width": 1280, "height": 720}'
With an x402-compatible client:
import { wrapFetch } from "@x402/fetch";
const fetch402 = wrapFetch(fetch, wallet);
const response = await fetch402("https://pylon-screenshot-api.fly.dev/screenshot", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url: "https://example.com" }),
});
// Screenshot PNG returned directly
Use all Pylon APIs from Claude, Cursor, or any MCP-compatible tool:
npx @pylonapi/mcp
Or install globally: npm i -g @pylonapi/mcp
See the MCP server on npm or browse it on Smithery.
/do/chainChain multiple Pylon APIs in a single request. The orchestration endpoint lets agents describe a pipeline of API calls where outputs flow into inputs:
POST https://pylonapi.com/do/chain
Content-Type: application/json
{
"steps": [
{ "api": "web-scrape", "params": { "url": "https://example.com" } },
{ "api": "md-to-pdf", "params": { "markdown": "{{steps.0.output}}" } }
]
}
Each step runs sequentially. Reference previous outputs with {{steps.N.output}}. Payment covers all steps in the chain. One request, one payment, multiple operations.
API keys are a bottleneck for autonomous agents. An agent can't sign up for accounts, enter credit cards, or manage billing dashboards. x402 lets payment be authentication — if you can pay, you can use the API. No human in the loop.
Every API is a standalone Express server. Clone this repo and deploy your own:
cd apis/screenshot
npm install
npm start
Remove the x402 middleware if you don't need payments. MIT licensed.
Want to add an API to Pylon? See PROVIDERS.md for the full onboarding guide and check out the provider-template/ for a starter repo.
MIT
Universal MCP gateway for AI agents — 1108 tools, 307 providers. One endpoint (https://apibase.pro/mcp), pay-per-call with x402 USDC on Base + MPP USDC on Tempo.
Apollo Intelligence MCP Server — 36 AI-curated data tools via x402 micropayments. OSINT, DeFi, economic data, security, weather, ML/NLP, and proxy infrastructure. Official MCP Registry: team.apolloai/intelligence
Discover and pay AI agents on nullpath's marketplace via MCP. x402 micropayments with USDC.
P402 Payment Protocol
Agent-first Remote MCP for X (Twitter) batch crawling with x402 USDC top-up (Base/Solana). Includes OpenAPI + copy-paste ADK/curl E2E examples.
500+ pay-per-call web tools + skill packs for AI agents — every one tested, priced, and settled on-chain. Paid in USDC over x402 on 8 chains, or free via proof-of-work on the pure-CPU tools. Self-hostable, MCP-native, deterministic. Plus the open x402 index (Find / Route / Leaderboard).
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.
DePIN for Vintage Hardware — Proof-of-Antiquity blockchain where old machines outmine new ones. AI-powered hardware fingerprinting, 15+ CPU architectures, Solana bridge (wRTC). $0 VC.
🚀 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.
Client SDK for the Vybe x402 API. Pay-per-call USDC over HTTP and prepaid-credit WebSocket streaming for Vybe's Solana analytics API. Built for AI agents.
The financial operating system for AI agents. A single HTTP client that intercepts '402 Payment Required', routes across x402, L402, and MPP, persists credentials as recoverable assets, enforces per-envelope budgets, and emits a structured trace.