Extract
Clean Text Extraction
Extract clean, human-readable page text stripped of navigation headers, footers, cookie banners, advertisements, and irrelevant chrome.
POST/v1/extract/textCost: 2 Credits
Code Example
curl -X POST https://api-rendernest.duckdns.org/v1/extract/text \
-H "Authorization: Bearer wf_live_xxxx" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/article"
}'Response Example
{
"success": true,
"request_id": "req_1725432140_5a4c3b",
"data": {
"url": "https://example.com/article",
"title": "Article Title",
"text": "This is the clean main body of the article without any navigation boilerplate or ads...",
"word_count": 842,
"reading_time_minutes": 5
}
}