Lemon8 Profile Scraper avatar
Lemon8 Profile Scraper

Pricing

$9.99/month + usage

Go to Apify Store
Lemon8 Profile Scraper

Lemon8 Profile Scraper

Scrape Lemon8 user profiles with support for automated multi-profile discovery. Extract detailed posts, engagement stats, comments, and download high-quality images and videos. Ideal for data analysis, media archiving, and influencer research.

Pricing

$9.99/month + usage

Rating

0.0

(0)

Developer

AbotAPI

AbotAPI

Maintained by Community

Actor stats

0

Bookmarked

14

Total users

1

Monthly active users

an hour ago

Last modified

Share

Scrape Lemon8 user profiles with support for automated multi-profile discovery. Extract detailed posts, engagement stats, comments, and download high-quality images and videos. Ideal for data analysis, media archiving, and influencer research.

Features

  • Profile Scraping - Extract user info, bio, stats, social links
  • Post Extraction - Scrape posts with infinite scroll support
  • Full Post Data - Titles, content, statistics, hashtags
  • Comment Extraction - All comments including replies (with "See more" expansion)
  • Video Detection - Identify and extract video post data
  • Media Downloads - Save images and videos to Key-Value Store
  • Following Profiles - Extract list of followed users
  • 10+ Regions - Support for US, Australia, Japan, and more
  • Anti-Bot Bypass - Uses Scrapling's StealthyFetcher
  • Apify Compatible - Same input/output schema as Node.js version

Input Configuration

ParameterTypeDefaultDescription
usernamestringrequiredLemon8 username (without @)
profileUrlstring-Full profile URL (alternative to username)
regionstring"us"Region code
limitint100Max posts to extract
getDetailsbooltrueExtract full post details
detailsLimitint10Max posts for detail extraction
saveImagesboolfalseDownload images to KVS
saveVideosboolfalseDownload videos to KVS
getFollowingboolfalseExtract following profiles
followingLimitint20Max following profiles to extract
proxyobjectnullProxy configuration

Example Input

{
"username": "sydneydelreyy",
"region": "us",
"limit": 50,
"getDetails": true,
"detailsLimit": 10,
"saveImages": false,
"saveVideos": false,
"getFollowing": false,
"followingLimit": 20
}

Regions

us, au, nz, jp, th, id, vn, my, sg, ca

Output Format

{
"userInfo": {
"name": "sydney del rey",
"bio": "amazon storefront...",
"followers": "28.4K",
"following": "34",
"likesAndSaves": "152.8K",
"profileImageUrl": "https://...",
"profileUrl": "/@sydneydelreyy",
"socialLinks": ["sydneydelrey"]
},
"posts": [
{
"id": "7518008729997099534",
"author": {
"name": "sydney del rey",
"profileUrl": "/@sydneydelreyy",
"profileImageUrl": "https://..."
},
"title": "Built in pad tank!",
"content": "In my basics amazon list...",
"postUrl": "https://...",
"statistics": {
"savedCount": "1382",
"likesCount": "5619",
"commentsCount": "67"
},
"images": [...],
"isVideo": false,
"details": {
"fullContent": "...",
"hashtags": ["#amazonfashion", ...],
"videoData": {...}
},
"allComments": [...],
"commentStats": {
"totalComments": 39,
"totalReplies": 15
}
}
],
"following": [...],
"metadata": {
"profileUrl": "https://...",
"username": "sydneydelreyy",
"region": "us",
"totalScraped": 50,
"scrollsPerformed": 15,
"videoPostsFound": 5,
"detailedPostsScraped": 10,
"followingProfilesScraped": 0
}
}