Lemon8 Media Scraper: Images, Videos & Downloads avatar

Lemon8 Media Scraper: Images, Videos & Downloads

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Lemon8 Media Scraper: Images, Videos & Downloads

Lemon8 Media Scraper: Images, Videos & Downloads

Lightweight Lemon8 scraper for extracting image and video URLs from posts, with optional media downloads. Built for fast, clean media collection without comments, captions, or other post details.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Abot API

Abot API

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

0

Monthly active users

9 days ago

Last modified

Share

Lemon8 Media Scraper

Lightweight scraper that extracts image and video URLs from Lemon8 posts. Focused on media extraction only - no comments, no post details, just clean media URLs.

Features

  • Image Extraction - Get all image URLs from posts
  • Video Extraction - Extract video URLs from video posts
  • Search Discovery - Find posts by keyword search
  • Direct URLs - Scrape specific post URLs
  • High Quality - Auto-convert thumbnails to high-quality URLs
  • Media Download - Optional download to Apify key-value store
  • Two Input Modes - Specific post URLs or a keyword search
  • Multiple Regions - Support for 10+ countries
  • Reliable Access - Smart proxy rotation with automatic fallback

Send results into your apps (MCP connectors)

Optionally pipe the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. This is an extra delivery step after the scrape — the Apify dataset is never changed.

What gets written to the connector: a condensed, human-readable summary of each record — not the full JSON. Each item becomes one entry with a title and its key fields flattened to plain text. The complete record always stays in the Apify dataset.

  1. Authorize a connector once under Apify → Settings → Integrations (Notion, Linear, Airtable, or Apify).
  2. Select it in the "Pipe results into your apps" input field. (If the picker is empty, you haven't authorized a connector yet.)
  3. For Notion, also set notionParentPageUrl to the page where items should be created.

The connection is mediated by Apify's MCP proxy, so this actor never sees your third-party credentials. Leave the field empty to skip.

Output Data

Each post is saved as a separate item in the dataset:

{
"postId": "7543408422994264589",
"postUrl": "https://www.lemon8-app.com/@username/7543408422994264589?region=us",
"images": [
{
"url": "https://p16-lemon8-sign-va.tiktokcdn.com/tos-maliva-v-ac5634-us/...",
"alt": "Post image description",
"type": "image"
}
],
"videos": [],
"imageCount": 5,
"videoCount": 0
}

With Media Download Enabled

When downloadMedia: true, each media item includes a keystoreKey:

{
"postId": "7543408422994264589",
"images": [
{
"url": "https://p16-lemon8-sign-va.tiktokcdn.com/...",
"alt": "Post image",
"type": "image",
"keystoreKey": "7543408422994264589_img_0.webp"
}
],
"videos": [
{
"url": "https://v16-lemon8.tiktokcdn.com/...",
"poster": "https://p16-lemon8-sign-va.tiktokcdn.com/...",
"type": "video",
"keystoreKey": "7543408422994264589_vid_0.mp4"
}
],
"imageCount": 1,
"videoCount": 1
}

Input Options

OptionTypeDefaultDescription
postUrlsArray[]Direct post URLs to scrape (overrides searchTerm)
searchTermString"fashion"Search keyword for discovery page
regionString"us"Region code
limitNumber2Maximum posts to process (1-100)
saveImagesBooleantrueExtract image URLs
saveVideosBooleantrueExtract video URLs
downloadMediaBooleanfalseDownload files to key-value store
highQualityBooleantrueConvert to high-quality URLs
maxScrollsNumber2Max scrolls on discovery (1-30)
scrollDelayNumber1000Delay between scrolls in ms
clearStorageBooleanfalseClear request queue and start fresh
proxyObjectnullApify proxy configuration
resumeFromRunIdString""Continue one interrupted run/dataset without re-collecting or re-charging its posts
incrementalModeBooleanfalseTurn on for recurring monitoring — classifies each post as NEW/UPDATED/UNCHANGED/REAPPEARED/EXPIRED against the previous run
stateKeyString""Name a monitoring campaign explicitly; otherwise the state key is derived from postUrls/searchTerm + region + saveImages/saveVideos/downloadMedia/highQuality
emitUnchangedBooleanfalseAlso return (and bill) UNCHANGED posts every run
emitExpiredBooleanfalseAlso return (and bill) posts no longer found, once a run fully scans every tracked post

Example: Search Discovery

{
"searchTerm": "fashion",
"region": "us",
"limit": 20,
"saveImages": true,
"saveVideos": true,
"downloadMedia": false
}

Example: Direct Post URLs

{
"postUrls": [
"https://www.lemon8-app.com/@username/7543408422994264589",
"https://www.lemon8-app.com/@another/7550145067198005791"
],
"downloadMedia": true
}

Available Regions

CodeRegion
usUnited States
auAustralia
nzNew Zealand
jpJapan
thThailand
idIndonesia
vnVietnam
myMalaysia
sgSingapore
caCanada

🔁 Resume & recurring updates

Two different features, both opt-in:

  • Resume (resumeFromRunId) continues ONE specific interrupted run: paste a previous run ID or dataset ID and this run skips posts it already collected.
  • Incremental mode (incrementalMode) is for scheduling this actor on a recurring basis against the same posts/search. The actor remembers what it saw last time (keyed by stateKey, or an automatic key derived from postUrls/searchTerm + region + saveImages/saveVideos/downloadMedia/highQuality) and adds four fields to every dataset row:
{
"changeType": "NEW",
"changedFields": [],
"firstSeenAt": "2026-07-31T03:00:00Z",
"lastSeenAt": "2026-07-31T03:00:00Z"
}

changeType is one of NEW, UPDATED, UNCHANGED, REAPPEARED, EXPIRED. UNCHANGED and EXPIRED posts are suppressed (not returned or billed) unless you turn on emitUnchanged / emitExpired. EXPIRED posts are only produced once a run has scanned every tracked post to its natural end — a Limit cap, a block, or resumeFromRunId all skip EXPIRED detection for that run rather than risk a false tombstone. These fields never appear when incrementalMode is off.

Lemon8/TikTok CDN image and video URLs are re-signed on every fetch (rotating shard host + signature/expiry tokens); incremental mode normalizes that noise before comparing posts, so a post whose media hasn't actually changed is never spuriously marked UPDATED.

Storage

Key-Value Store

  • INPUT - Run configuration
  • OUTPUT - Complete results with all media
  • METADATA - Run statistics (totalPosts, totalImages, totalVideos, downloadedFiles)
  • {postId}_img_{index}.webp - Downloaded images (if enabled)
  • {postId}_vid_{index}.mp4 - Downloaded videos (if enabled)

Dataset

Each post saved as a separate item for easy export and processing.

Accessing Downloaded Files

https://api.apify.com/v2/key-value-stores/{storeId}/records/{keystoreKey}

Use Cases

  • Content Archiving - Save media from posts before they disappear
  • Dataset Building - Collect images for ML training data
  • Visual Analysis - Analyze trending visual styles and formats
  • Competitor Research - Monitor competitor visual content
  • Content Inspiration - Discover popular image styles