Scraping web content is tedious. NoHustle API converts any URL to clean Markdown in one GET request.
š Zero Setup Required
curl "https://nohustle-api.onrender.com/url2md?url=https://example.com/article"
šŖ What It Handles
- JavaScript-rendered pages - Waits for content to load
- Clean text extraction - Removes ads, navigation, footers
- Proper formatting - Headers, links, lists preserved
- Large articles - Handles long-form content reliably
š§ Integration Examples
Python:
import requests
response = requests.get("https://nohustle-api.onrender.com/url2md", params={"url": "https://news.ycombinator.com"})
markdown = response.text
print(markdown[:500])
cURL in CI/CD:
# Archive article as Markdown
curl "https://nohustle-api.onrender.com/url2md?url=$ARTICLE_URL" > archive/$(date +%Y%m%d).md
Great for content archiving, research tools, or feeding LLMs clean text.
š Try it Now
š Try in Browser ā (Hugging Face Space)
š« Run in Postman ā (One-click collection)
ā” RapidAPI ā (Managed hosting)
More NoHustle endpoints: https://nohustle-api.onrender.com
Top comments (0)