ChangelogRelease History

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.

2024-10-15v1.2.0
featurebugfix

New Features

  • Added /v1/content/bulk endpoint 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"]
  }'

Bug Fixes

  • Fixed intermittent timeouts on /v1/scrape requests 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.
2024-09-20v1.1.0
featureimprovement

New Features

  • Introduced SERP search via /v1/serp endpoint. Now search the web by keyword and get structured results ready for AI.
path
querystring
Required

Your search query, e.g., "AI web scraping tools".

query
num_resultsnumber

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.
2024-08-10v1.0.0
breakingfeature

Initial Release

  • Launched core /v1/content endpoint to convert any URL to clean markdown, stripping nav, ads, and scripts.
  • Added /v1/scrape for 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.

This changelog serves as a starter template. Customize with your actual release notes and subscribe to updates via your account.