Live API

Web data for
AI agents & developers

Clean content extraction, OpenGraph metadata, and link parsing via REST API. Pay $0.01 USDC per call โ€” no accounts, no subscriptions, no lock-in.

Four tools. One API.

All endpoints accept ?free=1 for free tier (10 req/day per IP) or an x402 payment token for unlimited access.

GET/v1/metadata

Extract page title, description, OG tags, and canonical URL in one call. Fast โ€” ideal for link previews and content pipelines.

Example
curl "http://localhost:8080/v1/metadata?free=1&url=https://github.com/trending"
POST/v1/extract

Powered by Mozilla Readability (same engine as Firefox Reader Mode). Returns clean article text, word count, author, and publish date โ€” no boilerplate.

Example
curl -X POST http://localhost:8080/v1/extract \ -H "Content-Type: application/json" \ -H "x-free-tier: 1" \ -d '{"url":"https://techcrunch.com/2026/03/01/some-article"}'
POST/v1/og

Full OpenGraph + Twitter Card data dump. Includes og:type, og:site_name, twitter:card, twitter:image. Great for social preview generation.

Example
curl -X POST http://localhost:8080/v1/og \ -H "Content-Type: application/json" \ -H "x-free-tier: 1" \ -d '{"url":"https://openai.com"}'
POST/v1/links

Extract all hyperlinks from a page with labels and internal/external classification. Add "external_only":true to filter.

Example
curl -X POST http://localhost:8080/v1/links \ -H "Content-Type: application/json" \ -H "x-free-tier: 1" \ -d '{"url":"https://news.ycombinator.com","external_only":true}'

Simple pay-per-use

No monthly plans. Pay only for what you use.

Free Tier

$0 / day

10 requests per day per IP. Add ?free=1 or header x-free-tier: 1. No sign-up required.

Built for AI workflows

๐Ÿค–

AI Agent Research

Give your LangChain / AutoGPT agent clean article text without burning context on HTML noise.

๐Ÿ”—

Link Preview

Instant OG metadata for link unfurling in chat apps, CMS platforms, and social tools.

๐Ÿ•ท๏ธ

Web Crawling

Extract structured link graphs without running your own crawler infrastructure.

๐Ÿ“Š

Content Pipelines

Feed clean text into RAG pipelines, embeddings, or summarization workflows.