Reader Mode Server

This server fetches web pages, strips JavaScript/ads, and serves clean content.

API Usage

POST /fetch
Content-Type: application/x-www-form-urlencoded

url=https://example.com&apikey=YOUR_API_KEY

Response: {"url": "/view/abc123", "success": true}

Example with curl

curl -X POST http://localhost:8080/fetch -d "url=https://example.com/article" -d "apikey=YOUR_API_KEY"