๐Ÿ“„ Article Extraction API

Give it a URL, get back the clean main content โ€” no ads, menus, or boilerplate. Returns Markdown, text, or HTML. Free tier to start.

Get your API key โ†’
GET /extract?url=https://example.com/article&format=markdown

Features

๐Ÿงน Clean output

Boilerplate, ads & navigation stripped โ€” just the article.

๐Ÿ“ Markdown / Text / HTML

Pick the format you need, plus title, author & word count.

๐ŸŒ JS pages work

Rendered with real Chromium first, so client-side content is captured.

โšก Always-on

Fast, reliable, no cold starts.

Built for

Feeding articles to LLMs & RAG pipelines ยท reading / read-later apps ยท content archiving ยท newsletters & summaries ยท data collection.

Quick example

# any URL โ†’ clean Markdown
import requests
r = requests.get(
    "https://YOUR-API.p.rapidapi.com/extract",
    headers={"X-RapidAPI-Key": "YOUR_KEY",
             "X-RapidAPI-Host": "YOUR-API.p.rapidapi.com"},
    params={"url": "https://en.wikipedia.org/wiki/Web_scraping", "format": "markdown"},
)
print(r.json()["content"])