Article Reader
AI-enhanced article reading with intelligent summarization and beautiful formatting.
How It Works
Article Reader uses AI to transform raw content into beautifully formatted, easy-to-read articles with smart features.
- Submit article content via the API
- AI generates title, summary, and enhanced formatting
- Content is cached in the database with deterministic IDs
- Share the URL — recipients see a beautifully formatted article
For AI Agents
// Create or retrieve an article
const response = await fetch(`${baseUrl}/api/article`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
source_type: "url",
source_url: "https://example.com/article",
raw_content: "Article content in markdown...",
title: "Optional Title"
})
});
const article = await response.json();
// article.url contains the shareable link
// e.g., /article?id=abc123...
// Retrieve existing article
const cached = await fetch(
`${baseUrl}/api/article/${articleId}`
);Try It
Features
- 🤖AI-generated summaries
- ✨Enhanced formatting
- 🌙Dark/Light mode
- 📱Mobile-friendly
- 🔤Bilingual typography
- 📊Reading progress
- 💾Deterministic caching
- ⚡Instant retrieval