Erome Downloader avatar

Erome Downloader

Pricing

from $1.70 / 1,000 results

Go to Apify Store
Erome Downloader

Erome Downloader

[πŸ’° $1.7 / 1K] Download videos and images from Erome albums, profiles, or search. Paste album links, profile links, or usernames and get one row per media item, with direct links and optional file downloads.

Pricing

from $1.70 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

14

Total users

3

Monthly active users

3 days ago

Last modified

Share

Collect videos and images from Erome at scale β€” one clean row per media item, with the direct file link, thumbnail, uploader, tags, and full album details, plus optional one-click file downloads into your run's storage. Feed it album links, profile links, bare usernames, or a keyword search β€” all in the same run. Built for content archivists, media researchers, and collection managers who need Erome media in bulk, structured and ready to use, without saving hundreds of files one page at a time.

Why This Scraper?

  • Three ways in, one run β€” paste specific album links, crawl an entire user profile, or run a keyword search across Erome, and mix all three in a single job. No separate runs, no stitching results together afterward.
  • Videos and images in a single pass β€” every album is read once and returns both its videos and its images, each tagged with a type of video or image so you can split them downstream in one filter.
  • One row per media item, fully self-describing β€” each video or image is its own row carrying the direct media URL, a video poster/thumbnail, file extension, and its 1-based position in the album.
  • Every album detail stamped on every row β€” album ID, album URL, title, uploader username, tag list, and total media count travel with each media item, so grouping and attribution never need a second lookup.
  • Optional real-file archiving β€” flip one toggle to save the actual video and image files into your run's storage, and each row gets a ready-to-use download link alongside the original media URL.
  • Media-type filter built in β€” collect everything, videos only, or images only, applied per album so mixed albums return exactly the subset you asked for.
  • Bulk profile crawls with a per-profile album cap β€” pull a user's entire catalog and cap it at any number of albums (default 50) so one prolific uploader can't blow past your budget.
  • A single hard cap on total items β€” set the maximum media items for the whole run (videos plus images across every source) and cost stays predictable to the item.

Use Cases

Content Archiving & Backup

  • Snapshot a creator's full profile before it changes or disappears
  • Save both the direct media links and the actual files in one pass
  • Rebuild a personal collection from a list of album links
  • Keep a rolling backup of specific albums on a schedule

Media Research & Analysis

  • Study upload patterns across a set of profiles by album and media count
  • Build a dataset of media URLs and thumbnails for a keyword or theme
  • Compare how many videos vs. images an uploader publishes over time
  • Sample albums matching a search term for trend or catalog analysis

Catalog & Metadata Building

  • Turn album links into a structured spreadsheet of every media item
  • Attach uploader, tags, and album title to each media file for search
  • Deduplicate and index media by album ID and item position
  • Feed clean per-item rows into a media asset manager

Automation & Integration

  • Pipe new media rows straight into Google Sheets or a database
  • Trigger downstream workflows whenever a profile publishes new albums
  • Power an internal media dashboard from the JSON output
  • Schedule recurring pulls of a watchlist of profiles or search terms

Getting Started

Download a Single Album

The simplest run β€” just one album link:

{
"startUrls": ["https://www.erome.com/a/U3CyGACn"]
}

Crawl a Whole Profile

Pull every album from a user by username, videos only, and save the files:

{
"startUrls": ["someusername"],
"mediaType": "video",
"downloadFiles": true,
"maxAlbumsPerProfile": 25
}

Keyword Search With Filters

Search Erome, keep only images, and cap the whole run:

{
"searchQuery": "sunset",
"mediaType": "image",
"maxResults": 500,
"maxAlbumsPerProfile": 20
}

Input Reference

What to Download

ParameterTypeDefaultDescription
startUrlsstring[]["https://www.erome.com/a/U3CyGACn"]Album links (like https://www.erome.com/a/U3CyGACn), profile links, or plain usernames. Each entry is detected automatically: album links pull that album's media, while profile links and usernames pull every album from that user. Mix all three freely.
searchQuerystring(empty)Optional keyword search across Erome. Matching albums are collected. Use it on its own or alongside the links above.

Filters

ParameterTypeDefaultDescription
mediaTypeselectAll media (videos and images)Which media to include from each album: All media (videos and images), Videos only, or Images only.

Output Options

ParameterTypeDefaultDescription
downloadFilesbooleanfalseWhen on, the real video and image files are saved to this run's storage and each row gets a ready-to-use download link. When off, you get the direct media links and full details only β€” faster and cheaper.

Limits

ParameterTypeDefaultDescription
maxResultsinteger1000The most media items (videos plus images) to collect in total, across every album, profile, and search. Each media item is one result.
maxAlbumsPerProfileinteger50For usernames and profile links: the most albums to pull from a single user. Ignored for direct album links.

Output

Each row is one media item, with its album's details denormalized onto it. Here's a representative video row with file download turned on:

{
"type": "video",
"mediaUrl": "https://v12.erome.com/1234/U3CyGACn/abc123_720p.mp4",
"thumbnailUrl": "https://s7.erome.com/1234/U3CyGACn/abc123.jpg",
"filename": "U3CyGACn_1.mp4",
"extension": "mp4",
"num": 1,
"albumId": "U3CyGACn",
"albumUrl": "https://www.erome.com/a/U3CyGACn",
"albumTitle": "Summer trip highlights",
"user": "someusername",
"tags": ["summer", "beach", "travel"],
"albumMediaCount": 14,
"uploadDate": null,
"downloadUrl": "https://api.apify.com/v2/key-value-stores/abc/records/U3CyGACn_1.mp4",
"kvStoreKey": "U3CyGACn_1.mp4",
"status": "ok",
"error": null
}

Media Fields

FieldTypeDescription
typestringvideo or image
mediaUrlstringDirect URL of the media file
thumbnailUrlstringPoster/preview image for videos; the image itself for images
filenamestringSuggested filename, <albumId>_<num>.<ext>
extensionstringFile extension (mp4, jpg, …)
numnumber1-based position of the item within its album

Album Fields (on every row)

FieldTypeDescription
albumIdstringErome album ID
albumUrlstringSource album URL
albumTitlestringAlbum title
userstringUploader username
tagsstring[]Album tags
albumMediaCountnumberTotal media items in the album
uploadDatestringAlbum upload date when shown by Erome

File & Status Fields

FieldTypeDescription
downloadUrlstringDirect download link to the saved file β€” present only when file download is on
kvStoreKeystringStorage key of the saved file β€” present only when file download is on
statusstringok when the row is complete, or failed when file download was requested but the file couldn't be saved
errorstringShort reason when status is failed

Tips for Best Results

  • Start with one album β€” run a single album link first to confirm the output shape matches what you need, then scale up to profiles and search.
  • A bare username is the fastest profile crawl β€” you don't need the full profile URL; just type the username into the links field and every album from that user is expanded automatically.
  • Set maxResults to bound cost β€” it counts individual media items (videos plus images), so a run capped at 500 stops at exactly 500 items no matter how large the albums are.
  • Leave file download off unless you need the actual files β€” direct media links plus full details cover most workflows and finish faster; turn download on only when you want the files saved in storage.
  • Filter by media type at the source β€” set Videos only or Images only so mixed albums return just the subset you want, instead of filtering thousands of rows afterward.
  • Combine sources in one run β€” album links, profile usernames, and a search keyword can all go into the same job; results stream into one dataset with the album details on every row.
  • Group by albumId downstream β€” because every album detail is stamped on each media row, a single group-by on albumId reassembles complete albums with no second pass.

Pricing

From $1.70 per 1,000 results β€” a flat pay-per-result rate that undercuts comparable Erome downloaders, with actual file downloads included at no surcharge. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

ResultsNo discountBronzeSilverGold
100$0.20$0.19$0.18$0.17
1,000$2.00$1.90$1.80$1.70
10,000$20.00$19.00$18.00$17.00
100,000$200.00$190.00$180.00$170.00

A "result" is one collected media item β€” each video or image is a single result. There are no compute or time-based charges β€” you pay per result, plus a small fixed per-run start fee. Turning on file download saves the actual files at the same per-result price, with no extra charge.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n β€” Workflow automation
  • Google Sheets β€” Direct spreadsheet export
  • Slack / Email β€” Notifications on new results
  • Webhooks β€” Trigger custom APIs on run completion
  • Apify API β€” Full programmatic access

This actor is intended for lawful use such as personal backup, archiving of content you have the right to save, and legitimate research. Erome hosts adult content, so use is limited to adults where such material is legal. You are responsible for complying with all applicable laws, with Erome's Terms of Service, and with the rights of the creators whose media you collect β€” do not redistribute, misrepresent, or otherwise use collected media in ways that infringe those rights or any person's privacy. Only collect content that is publicly available and that you are permitted to access, and do not use the data for harassment or any unlawful purpose.