๐Ÿงช All Social Media Scraper (Testing Mode โ€“ $0.01 for now!) avatar
๐Ÿงช All Social Media Scraper (Testing Mode โ€“ $0.01 for now!)

Pricing

$0.01 / 1,000 scrapings

Go to Store
๐Ÿงช All Social Media Scraper (Testing Mode โ€“ $0.01 for now!)

๐Ÿงช All Social Media Scraper (Testing Mode โ€“ $0.01 for now!)

Developed by

Jeff Halverson

Jeff Halverson

Maintained by Community

I am aiming at making a scraper that not only is good in any use case but also meets everyones need perfectly on top of leaving money in ur pocket. I dont aim to make something amazing and then demand ur paycheck for its use. So feedback is greatly appreciated (good or bad fyi as both crucial)...TY

5.0 (1)

Pricing

$0.01 / 1,000 scrapings

2

Total users

22

Monthly users

12

Runs succeeded

>99%

Last modified

2 months ago

๐Ÿ“„ Blog & Media Content Scraper

This actor crawls blogs, news, and content-heavy websites to extract valuable structured content, including:

  • โœ… Page Title
  • ๐Ÿง  Meta Description, Keywords, and Publish Date
  • โœ๏ธ Readable article sections (smart detection of .article, .post, .entry)
  • ๐Ÿ–ผ๏ธ Image URLs
  • ๐Ÿ“น Videos grouped by file type (e.g., mp4, mkv, flv, 3gp)
  • ๐Ÿ“ค Structured JSON + CSV output via Apify dataset

๐Ÿ’ก Use Cases

  • ๐Ÿง  Fine-tune GPT models with your blog or publication data
  • โœ๏ธ Build summarizers, translators, SEO tools, or content aggregators
  • ๐Ÿ•ต๏ธ Monitor competitor or client site content
  • ๐Ÿ“ฐ Collect articles and media for newsletters, research, or knowledge bases
  • ๐Ÿ” Turn messy blog pages into clean, machine-readable content

๐Ÿ“ฆ ChangeLog

๐Ÿ†• v1.0 โ€“ Full Release

  • โœ… Removed testing mode โ€“ now production-ready
  • ๐Ÿ“น Video extraction is now grouped by file type (e.g., mp4, mkv, 3gp)
  • ๐Ÿ”— Extracts all page links into the links field
  • ๐Ÿง  Auto-tags media-rich pages if more than 30 images/videos are found
  • ๐Ÿ“ค Includes direct CSV export links for images and videos
  • ๐Ÿ” Improved article detection and meta extraction

๐Ÿ“ฅ Input

The actor accepts the following input:

{
"startUrls": [{ "url": "https://example.com" }],
"maxRequestsPerCrawl": 50,
"maxConcurrency": 5
}
---
## ๐Ÿ“ค Output
The actor publishes the following structured JSON output:
```json
{
"url": "https://sample-videos.com",
"title": "Download Sample Videos / Dummy Videos For Demo Use",
"meta": {
"description": "Download sample video or test video for your testing purpose. We provides you different types of video formats with different size.",
"keywords": "download sample clip, free clip download, download demo clip, download demo video, download dummy video, download video, download sample video, download video for developer, download mp4 video, download flv video, download mkv video",
"publishDate": null
},
"articles": [
{
"title": "Download Sample Videos",
"link": "https://sample-videos.com/",
"summary": "Are you looking for videos of different resolution and sizes to test while designing or developing a mobile app?",
"author": null,
"date": null
}
],
"images": [
"https://sample-videos.com/images/imgw.png"
],
"videos": {
"mp4": [
"https://sample-videos.com/video321/mp4/720/big_buck_bunny_720p_10mb.mp4"
],
"flv": [],
"mkv": [],
"3gp": []
},
"links": [
"https://sample-videos.com/index.php#sample-mp4-video",
"https://sample-videos.com/download-sample-jpg-image.php"
],
"exports": {
"videoCsv": "https://api.apify.com/v2/datasets/iphP0fH83dPWkUFbG/items?format=csv&fields=videos",
"imageCsv": "https://api.apify.com/v2/datasets/iphP0fH83dPWkUFbG/items?format=csv&fields=images"
},
"autoTag": {
"type": "media"
}
}