HTTP 402 · USDC on Base
Give Your AI Agents Real Web Access
Render · Extract · Analyze · Archive
AgentNorth provides browser infrastructure for AI agents, bots and developers. Load any webpage, execute JavaScript, extract content, take screenshots, render PDFs and much more. Pay per request with x402 — no accounts, no API keys.
curl -X POST https://agentnorth.dev/api/v1/pdf \
-H "Content-Type: application/json" \
-d '{
"url":"https://example.com",
"format":"A4",
"printBackground":true
}'from agentnorth import Client
an = Client(wallet=os.environ["WALLET_KEY"])
pdf = an.pdf(
url="https://example.com",
format="A4",
print_background=True,
)
print(pdf.download_url)
print(pdf.price) # $0.03import { x402 } from "@agentnorth/sdk";
const an = x402({ wallet: process.env.WALLET_KEY });
const pdf = await an.pdf({
url: "https://example.com",
format: "A4",
printBackground: true,
});
console.log(pdf.download_url);
console.log(pdf.price); // "$0.03"{
"mcpServers": {
"agentnorth": {
"url": "https://agentnorth.dev/mcp",
"transport": "http"
}
}
}402 Payment RequiredX-PAYMENT 0.03 USDC200 OK
SERVICES
Seven endpoints. Each priced per request.
Rendered HTML
Execute JavaScript in real Chromium and return the fully rendered document.
Markdown
Turn live webpages into clean, structured Markdown ready for agents and RAG.
Screenshot
Capture viewport or full-page PNG screenshots from a real browser.
PDF Render
Generate print-ready PDFs from JavaScript-rendered webpages.
SEO Analysis
Extract titles, metadata, headings, canonical URLs, schema and links.
Security Check
Inspect TLS and important HTTP security headers from a public URL.
Links & Data
Extract links, JSON-LD and machine-readable structured page data.
How it works
- 1
Request
Agent calls an endpoint.
- 2
Pay
x402 payment in USDC.
- 3
Render
Chromium loads and processes the page.
- 4
Receive
Get your data instantly.
curl -X POST https://agentnorth.dev/api/v1/pdf \
-H "Content-Type: application/json" \
-d '{
"url":"https://example.com",
"format":"A4",
"printBackground":true
}'
{
"success": true,
"price": "$0.03",
"pages": 7,
"render_ms": 4281,
"content_type": "application/pdf",
"download_url": "/files/abc123.pdf"
}
- 100%
- Self-hosted in Iceland
- Xeon
- Enterprise multi-core hardware
- < 3s
- Target render time
- 99.9%
- Uptime target
Render time and uptime are stated targets, not contractual guarantees. Measured figures are published on the status page.
Built for autonomous software
Every service is designed to be callable by agents without signup friction, subscriptions or long-lived API credentials.
Machine-native payments
x402 lets a client receive a 402 response, authorize the payment and retry the request automatically.
Real browser execution
When a plain HTTP fetch is not enough, AgentNorth uses Chromium to render JavaScript-heavy pages, screenshots and PDFs.