Changelog
Track the latest updates, new features, and improvements in Chuger.
Recent Changes
Check your dashboard at https://app.example.com/dashboard to see how these updates affect your usage and credits.
New Features
- Added
/v1/content/bulkendpoint for processing multiple URLs in a single request, reducing latency for batch operations.
curl -X POST https://api.example.com/v1/content/bulk \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"urls": ["https://example.com/page1", "https://example.com/page2"]
}'
const response = await fetch('https://api.example.com/v1/content/bulk', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
urls: ['https://example.com/page1', 'https://example.com/page2']
})
});
import requests
response = requests.post(
'https://api.example.com/v1/content/bulk',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
json={'urls': ['https://example.com/page1', 'https://example.com/page2']}
)
Bug Fixes
- Fixed intermittent timeouts on
/v1/scraperequests exceeding 500ms average latency. - Resolved markdown formatting issues with nested lists and tables from complex pages.
Improvements
- Reduced average latency by 15% across all endpoints through optimized rendering.
New Features
- Introduced SERP search via
/v1/serpendpoint. Now search the web by keyword and get structured results ready for AI.
Your search query, e.g., "AI web scraping tools".
Number of results to return (default: 10, max: 20).
Improvements
- Enhanced MCP server compatibility for Claude Desktop and Cursor, with better error handling for live web browsing.
- Markdown output now preserves more semantic structure from original pages, like headings and links.
Bug Fixes
- Patched authentication token validation to prevent rare 401 errors on high-volume requests.
Initial Release
- Launched core
/v1/contentendpoint to convert any URL to clean markdown, stripping nav, ads, and scripts. - Added
/v1/scrapefor raw content extraction. - Full MCP server support for AI assistants to browse the live web natively.
Breaking Changes
- Initial API version uses Bearer token auth only. Migrate from legacy query params if applicable.
Upgrade Instructions
Follow these steps to ensure your integration uses the latest features.
Update Your Token
Generate a new API token from your dashboard.
# Visit dashboard and create token
https://app.example.com/api-tokens
Test New Endpoints
Verify /v1/content/bulk works with your code.
Start with 2-3 URLs to monitor credit usage.
Monitor Usage
Check recent requests in your dashboard history.
Upcoming Features
- Native image extraction and alt-text optimization for multimodal AI.
- Advanced extraction schemas for structured data like product info or articles.
- Webhook support for real-time processing callbacks.
Quickstart
Get started with basic URL to markdown conversion.
API Reference
Full endpoint details and authentication guide.
This changelog serves as a starter template. Customize with your actual release notes and subscribe to updates via your account.
Last updated today
Built with Documentation.AI