URL to Markdown
Convert any URL to clean, LLM-ready markdown. 5-layer cascade with automatic fallbacks, headless rendering for JS-heavy pages, caching, and screenshot support.
https://md.yolopush.com/<url>
Try it
5-Layer Cascade Pipeline
1
Quick ExtractLightweight markdown negotiation
FreeInstant
2
AI EnhancedAI-powered HTML conversion
Free~500ms
3
Deep RenderFull headless browser rendering
Free~2-5s
4
Premium ExtractBattle-tested deep extraction
Free~1-3s
5
Fallback ParseDOM parse — last resort
Free~200ms
Each layer is tried in order. The first one to return >200 chars of content wins. If a layer fails, the next one kicks in automatically.
Request Headers
Header
Values
Default
X-Return-Formatmarkdown, html, text, json, screenshot
markdown
X-Target-SelectorCSS selector
—
X-Wait-For-SelectorCSS selector
—
X-Remove-SelectorCSS selector (e.g. nav, footer, .ads)
—
X-With-Links-Summarynone / all / dedup
none
X-With-Images-Summarynone / all / dedup
none
X-AI-Image-Description-Languageen / it / de / es / fr / pt
—
X-AI-HTML-Hostnamehostname (e.g. docs.example.com)
source host
X-AI-PDF-Metadatatrue / false
false
X-Retain-Imagesall / none
all
X-Token-Budgetnumber (min 100)
—
X-Md-Link-Styleinline / referenced / discarded
inline
X-Engineauto / browser / direct
auto
X-Viewport-Widthnumber (pixels)
1280
X-Viewport-Heightnumber (pixels)
720
X-Set-Cookiecookie string
—
X-Timeout5-60 (seconds)
30
Example URLs
Response Headers
X-ProviderWhich extraction layer produced the result (e.g. quick-extract, ai-enhanced, deep-render)X-Duration-MsTime taken to scrape the URL in millisecondsX-Markdown-TokensEstimated token count of the markdown outputcURL Examples
Get markdown
curl https://md.yolopush.com/https://example.com
JSON response
curl -H "Accept: application/json" https://md.yolopush.com/https://example.com
Screenshot (PNG)
curl -o screenshot.png "https://md.yolopush.com/https://example.com?format=screenshot"
Remove nav & footer
curl -H "X-Remove-Selector: nav, footer, .sidebar" https://md.yolopush.com/https://example.com
Dedup links summary
curl -H "X-With-Links-Summary: dedup" https://md.yolopush.com/https://example.com
Disable PDF metadata
curl -H "X-AI-PDF-Metadata: false" https://md.yolopush.com/https://example.com/report.pdf
Direct mode (fast)
curl "https://md.yolopush.com/https://example.com?engine=direct"