⚡ Pylon Agent Gateway

One endpoint. Every tool an agent needs.
No API keys. No docs to read. Just describe what you want.

Quick Start

curl -X POST https://gateway.pylonapi.com/do \
  -H "Content-Type: application/json" \
  -d '{"task": "take a screenshot of https://example.com"}'

The gateway figures out which tool to use, extracts parameters from your description, and returns the result. Pay via x402 micropayment.

Explicit Mode

curl -X POST https://gateway.pylonapi.com/do \
  -H "Content-Type: application/json" \
  -d '{
    "capability": "screenshot",
    "params": {"url": "https://example.com", "fullPage": true}
  }'

Available Capabilities

IDNameDescriptionCost
screenshotScreenshotTake a full-page screenshot of any webpage. Returns PNG or JPEG image.$0.01
pdf-parsePDF ParseExtract text content and metadata from a PDF document by URL.$0.02
ocrOCRExtract text from an image using optical character recognition (OCR).$0.03
email-validateEmail ValidateValidate an email address — checks format, MX records, and SMTP deliverability.$0.005
domain-intelDomain IntelGet intelligence on a domain — WHOIS data, DNS records, SSL certificate info, and technology stack detection.$0.01
qr-codeQR CodeGenerate a QR code image from text, URL, or other data.$0.005
image-resizeImage ResizeResize, crop, or convert image format. Supports PNG, JPEG, WebP.$0.01
md-to-pdfMarkdown to PDFRender markdown text as a styled PDF document.$0.02
html-to-pdfHTML to PDFRender HTML content as a PDF using full Chromium rendering engine.$0.02
searchWeb SearchSearch the web and return relevant results. Returns titles, URLs, and snippets.$0.003
file-storageFile StorageUpload a file and get a public URL. Supports any file type up to 50MB. Files expire after 30 days.$0.005
doc-genDocument GenerationGenerate professional PDF documents from templates and data. Supports invoice, receipt, report, and letter templates, or custom HTML.$0.02

Endpoints

POST /doExecute a task (natural language or explicit)
GET /capabilitiesList all available tools (JSON)
GET /mcpMCP tool definitions (for Claude, Cursor, etc.)
GET /providersList third-party API providers
GET /healthHealth check

MCP Integration

Use the /mcp endpoint to get auto-generated tool definitions for all capabilities. Compatible with Claude, Cursor, and any MCP-compatible client.

curl https://api.pylonapi.com/mcp | jq .

Providers

Pylon is an open platform. Third-party API providers can list their APIs and earn 85% of revenue in USDC on Base. Visit pylonapi.com/providers to learn more.

How It Works

  1. Send a task description to /do
  2. Gateway matches your task to the best tool
  3. Extracts parameters from your description (or use explicit params)
  4. Calls the backend, returns the result
  5. Payment via x402 — USDC on Base. No API keys needed.

pylonapi.com · GitHub · x402 Protocol · Powered by Pylon AI