Word Cloud Data API — Top Terms & Weights from Any URL
Pricing
$10.00 / 1,000 page scanneds
Word Cloud Data API — Top Terms & Weights from Any URL
Word cloud generator data API. Input: startUrls. Output: JSON per page with top terms and normalized weights, stopwords removed — ready to feed any word-cloud renderer or keyword analysis. Cheap pay-per-result: $0.01 per page scanned, no subscription.
Pricing
$10.00 / 1,000 page scanneds
Rating
0.0
(0)
Developer
Anthony Snider
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Word Cloud Data Generator
Turn any web page into ready-to-render word-cloud data — the top terms with normalized weights, stopwords already removed.
Live on the Apify Store — run it instantly or call it as an agent tool via Apify MCP.
What you get
- Visible text extracted from the live page (scripts, styles, SVG, and markup stripped)
- Tokenized, lowercased terms with English stopwords and short tokens (<3 chars) removed
- The top N terms by frequency, each with a raw
countand aweightnormalized to 1–100 — drop it straight into any word-cloud library (d3-cloud, wordcloud2.js, etc.) - Single URL or bulk array of URLs in one run
Input
{"url": "https://en.wikipedia.org/wiki/Web_scraping","topN": 50,"maxUrls": 25}
Provide url for a single page or urls for a bulk array (you can use both). topN defaults to 50.
Output
{"url": "https://en.wikipedia.org/wiki/Web_scraping","status": 200,"termCount": 50,"terms": [{ "text": "data", "count": 87, "weight": 100 },{ "text": "web", "count": 64, "weight": 74 },{ "text": "scraping", "count": 41, "weight": 48 },{ "text": "page", "count": 22, "weight": 26 }]}
Each input page produces one dataset record. Failed fetches push { url, error } so one bad URL never breaks the run.