YOLO PUSHYOLO PUSHBETA

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-Format
markdown, html, text, json, screenshot
markdown
X-Target-Selector
CSS selector
X-Wait-For-Selector
CSS selector
X-Remove-Selector
CSS selector (e.g. nav, footer, .ads)
X-With-Links-Summary
none / all / dedup
none
X-With-Images-Summary
none / all / dedup
none
X-AI-Image-Description-Language
en / it / de / es / fr / pt
X-AI-HTML-Hostname
hostname (e.g. docs.example.com)
source host
X-AI-PDF-Metadata
true / false
false
X-Retain-Images
all / none
all
X-Token-Budget
number (min 100)
X-Md-Link-Style
inline / referenced / discarded
inline
X-Engine
auto / browser / direct
auto
X-Viewport-Width
number (pixels)
1280
X-Viewport-Height
number (pixels)
720
X-Set-Cookie
cookie string
X-Timeout
5-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 milliseconds
X-Markdown-TokensEstimated token count of the markdown output

cURL 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"