Loom Video Downloader avatar

Loom Video Downloader

Pricing

Pay per event

Go to Apify Store
Loom Video Downloader

Loom Video Downloader

Collect Loom video data including titles, durations, view counts, transcripts, captions, thumbnails, and download links. Supports both share and embed URLs. Get structured data from any public Loom video — no login required.

Pricing

Pay per event

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

2

Bookmarked

25

Total users

2

Monthly active users

16 days ago

Last modified

Share

ParseForge Banner

🎥 Loom Video Downloader

🚀 Pull Loom video data and download links in seconds. Titles, durations, view counts, transcripts, captions, thumbnails, owner info. No login, no API key.

🕒 Last updated: 2026-05-08 · 📊 15+ fields per video · 📝 Transcripts + captions · 🚫 No auth required

Pull live Loom video data without logging in. Pass a list of Loom share URLs and the actor returns one structured record per video with title, duration, view count, owner info, thumbnails, direct download URL, full transcript, and WebVTT captions. Built for content teams archiving knowledge bases, agencies repurposing client recordings, researchers studying screen-recorded content, and anyone who needs Loom data programmatically.

Every run fetches data live so you get the current state of each video, not a stale dump. The transcript and captions can be toggled off for a faster, lighter run when you only need metadata.

👥 Built for🎯 Primary use cases
Content and knowledge teamsArchive Loom recordings into your CMS
Agencies and consultanciesRepurpose client recordings into content
Sales enablementIndex demo videos with full transcripts
Researchers and accessibilityConvert recordings into searchable text
Engineering teamsSync Loom uploads into internal video apps
Compliance and auditCapture recorded sessions with metadata

📋 What the Loom Video Downloader does

  • 🎥 Direct download URL. Get the actual video file URL for download or storage.
  • 📝 Full transcript. Fetches the spoken content as a single text block.
  • 📋 WebVTT captions. Time-coded subtitles in standard format for video players.
  • 🖼️ Thumbnails. Primary preview image URL.
  • 👤 Owner info. Name and avatar of the creator.
  • 📊 Video metadata. Title, description, duration, view count, share status.

The actor accepts a list of Loom share URLs (/share/ or /embed/) and processes each independently. Records stream into the dataset as videos finish processing, so you can start consuming results before the run is fully done.

💡 Why it matters: Loom is a critical knowledge surface for many companies but lacks bulk export. A live, structured pull beats screen-recording downloads for archiving, repurposing, and search workflows.


🎬 Full Demo

🚧 Coming soon: a 3-minute walkthrough showing setup, a live run, and how to pipe results into Google Drive via Apify integrations.


⚙️ Input

FieldTypeNameDescription
urlsarray of stringsLoom Video URLsRequired. Loom share or embed URLs (e.g. https://www.loom.com/share/abc123).
maxItemsintegerMax ItemsFree users: limited to 10 items (preview). Paid users: optional, max 1,000,000.
includeTranscriptbooleanInclude TranscriptWhen true, fetches the full video transcript. Default true.
includeCaptionsbooleanInclude Captions (VTT)When true, fetches WebVTT captions with timestamps. Default true.
proxyConfigurationobjectProxy ConfigurationOptional. Loom works without proxy; enable only if you hit rate limits.

Example 1. Three Loom videos with transcripts and captions.

{
"urls": [
"https://www.loom.com/share/abc123",
"https://www.loom.com/share/def456",
"https://www.loom.com/share/ghi789"
],
"includeTranscript": true,
"includeCaptions": true,
"maxItems": 3
}

Example 2. Metadata-only run (no transcript or captions).

{
"urls": [
"https://www.loom.com/share/abc123"
],
"includeTranscript": false,
"includeCaptions": false,
"maxItems": 1
}

⚠️ Good to Know: turning off includeTranscript and includeCaptions makes runs much faster when you only need metadata or download links.


📊 Output

The dataset returns one structured record per Loom video. Each record carries identifiers, title, duration, view count, owner info, download URL, transcript, captions, and a back-reference URL. Consume the dataset as JSON, CSV, Excel, XML, or RSS via the Apify console or API.

🧾 Schema

FieldTypeExample
🆔 videoIdstringe41353f2fe1c43eba6c6829693e0f2c5
🔗 videoUrlstring (url)https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5
📝 titlestringQ2 Product Update
📃 descriptionstringWalkthrough of new dashboard features...
🖼️ thumbnailUrlstring (url)https://cdn.loom.com/sessions/.../thumb.jpg
⏱️ durationSecondsnumber345
👁️ viewCountnumber1240
👤 ownerNamestringJane Smith
🖼️ ownerAvatarUrlstring (url)https://cdn.loom.com/avatars/jane.jpg
📅 createdAtISO datetime2026-04-12T14:30:00.000Z
🔗 downloadUrlstring (url)https://cdn.loom.com/sessions/.../video.mp4
📝 transcriptstring or nullWelcome to our Q2 update. Today I want to walk you through...
📋 captionsstring or nullWEBVTT\n\n00:00.000 --> 00:05.000\nWelcome to our Q2 update.\n...
🔒 isPublicbooleantrue
📅 scrapedAtISO datetime2026-05-08T12:00:00.000Z

📦 Sample records

1. Typical record (with transcript and captions)

{
"videoId": "e41353f2fe1c43eba6c6829693e0f2c5",
"videoUrl": "https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5",
"title": "Q2 Product Update",
"description": "Walkthrough of new dashboard features and roadmap.",
"thumbnailUrl": "https://cdn.loom.com/sessions/thumb-abc.jpg",
"durationSeconds": 345,
"viewCount": 1240,
"ownerName": "Jane Smith",
"ownerAvatarUrl": "https://cdn.loom.com/avatars/jane.jpg",
"createdAt": "2026-04-12T14:30:00.000Z",
"downloadUrl": "https://cdn.loom.com/sessions/video-abc.mp4",
"transcript": "Welcome to our Q2 product update. Today I want to walk you through the new dashboard features and the roadmap for next quarter.",
"captions": "WEBVTT\n\n00:00.000 --> 00:05.000\nWelcome to our Q2 product update.\n\n00:05.000 --> 00:12.000\nToday I want to walk you through the new dashboard features.",
"isPublic": true,
"scrapedAt": "2026-05-08T12:00:00.000Z"
}

2. Metadata-only record

{
"videoId": "abc123def456",
"videoUrl": "https://www.loom.com/share/abc123def456",
"title": "Sales demo - Acme Corp",
"thumbnailUrl": "https://cdn.loom.com/sessions/thumb-def.jpg",
"durationSeconds": 612,
"viewCount": 47,
"ownerName": "Carlos Garcia",
"createdAt": "2026-04-20T09:15:00.000Z",
"downloadUrl": "https://cdn.loom.com/sessions/video-def.mp4",
"transcript": null,
"captions": null,
"isPublic": true,
"scrapedAt": "2026-05-08T12:00:00.000Z"
}

3. Private or restricted video (sparse fields)

{
"videoId": "private789",
"videoUrl": "https://www.loom.com/share/private789",
"title": null,
"isPublic": false,
"scrapedAt": "2026-05-08T12:00:00.000Z"
}

✨ Why choose this Actor

Capability
🎯Built for the job. Scoped specifically to Loom so you skip the parser engineering entirely.
🔖Structured output. Clean, typed fields ready for analysis, dashboards, or downstream pipelines.
Fast. Optimized request patterns return results in seconds, not minutes.
🔁Always fresh. Every run pulls live data, so the dataset reflects Loom as of run time.
📝Transcripts and captions. Toggle them on or off depending on your workflow.
🛡️Reliable. Battle-tested across many runs and edge cases, with graceful error handling.
🚫No code required. Configure in the UI, run from CLI, schedule via cron, or call from any language with the Apify SDK.

📊 Production-grade Loom data without writing or maintaining your own scraper.


📈 How it compares to alternatives

ApproachCostCoverageRefreshFiltersSetup
⭐ Loom Video Downloader (this Actor)$5 free credit, then pay-per-useAny public Loom URLLive per runPer-URL⚡ 2 min
Browser screen-recordTime-intensiveLimitedStaleNone🐢 Hours
Loom paid export tools$$ monthlyLoom-onlyLiveLimited⏳ Hours
Build your own scraperEngineering hoursFull once builtWhenever you maintain itCustom code🐢 Days to weeks

Pick this Actor when you want fast, structured Loom data without owning the infrastructure.


🚀 How to use

  1. 📝 Sign up. Create a free account with $5 credit (takes 2 minutes).
  2. 🌐 Open the Actor. Go to the Loom Video Downloader page on the Apify Store.
  3. 🎯 Add Loom URLs. Paste your Loom share URLs and (optionally) toggle transcript and captions.
  4. 🚀 Run it. Click Start and let the Actor process each video.
  5. 📥 Download. Grab your results in the Dataset tab as CSV, Excel, JSON, or XML.

⏱️ Total time from signup to first record: 3-5 minutes for a single Loom video.


💼 Business use cases

📊 Content and knowledge management

  • Archive recorded knowledge into your CMS or wiki
  • Build searchable transcript libraries
  • Index Loom recordings for full-text search
  • Repurpose recordings into blog posts and social clips

🏢 Sales and enablement

  • Bulk-archive demo recordings for training
  • Build searchable demo libraries by topic
  • Auto-generate demo highlights from transcripts
  • Power onboarding flows with curated recordings

🎯 Marketing and content ops

  • Repurpose Loom walkthroughs into video shorts
  • Auto-generate captions for accessibility
  • Mine transcripts for blog post content
  • Build show-notes-style summaries at scale

🛠️ Engineering and product

  • Sync Loom uploads into internal video apps
  • Replace fragile browser-recording flows
  • Wire datasets into your apps via the Apify API or webhooks
  • Skip the auth and download-handling maintenance entirely

🌟 Beyond business use cases

Data like this powers more than commercial workflows. The same structured records support research, education, civic projects, and personal initiatives.

🎓 Research and academia

  • Empirical datasets for papers, thesis work, and coursework
  • Longitudinal studies tracking changes across snapshots
  • Reproducible research with cited, versioned data pulls
  • Classroom exercises on data analysis and ethical scraping

🎨 Personal and creative

  • Side projects, portfolio demos, and indie app launches
  • Data visualizations, dashboards, and infographics
  • Content research for bloggers, YouTubers, and podcasters
  • Hobbyist collections and personal trackers

🤝 Non-profit and civic

  • Transparency reporting and accountability projects
  • Advocacy campaigns backed by public-interest data
  • Community-run databases for local issues
  • Investigative journalism on public records

🧪 Experimentation

  • Prototype AI and machine-learning pipelines with real data
  • Validate product-market hypotheses before engineering spend
  • Train small domain-specific models on niche corpora
  • Test dashboard concepts with live input

🔌 Automating Loom Video Downloader

This Actor exposes a REST endpoint, so you can drive it from any language or workflow tool.

Schedules. Use Apify Scheduler to process new Loom URLs on a cron cadence. Combine with webhooks to trigger downstream workflows the moment a video is processed.


💰 How much does it cost?

Apify gives you $5 in free monthly credits on the Apify Free plan, enough to test Loom Video Downloader and pull a real sample dataset. For ongoing usage:

  • Starter plan ($49/month) — Recommended for individuals running Loom Video Downloader regularly. Includes higher concurrency and larger datasets.
  • Scale plan ($499/month) — Recommended for teams running Loom Video Downloader at production scale.

Pay-Per-Event pricing means you only pay for what you actually use. Failed runs are never charged. See the Pricing tab on this Actor's page for exact event prices.

💡 Tips for using Loom Video Downloader

  • Start with a small maxItems (3-10) to validate output format before running larger jobs.
  • Use Apify Schedules to run Loom Video Downloader on a recurring basis and keep your dataset fresh.
  • Export via Integrations: Apify connects to Google Sheets, Airbyte, Make, Zapier, and direct webhooks — pipe your data anywhere.
  • Monitor with webhooks: trigger downstream workflows the moment a run finishes.
  • Re-run failed items: if any individual records error out, re-run with their inputs only. Failed events are not charged.

Yes. Loom Video Downloader only collects publicly available data. Web scraping public data has been confirmed as legal by US courts (see hiQ Labs v. LinkedIn) and is widely used for research, market analysis, and business intelligence.

However, you are responsible for:

  • Respecting the source website's Terms of Service.
  • Complying with GDPR, CCPA, and other applicable data-protection laws when personal data is involved.
  • Not republishing copyrighted content without permission.

If you have specific compliance concerns, consult your legal team. See the Apify legal docs for more.

❓ Frequently Asked Questions

🔌 Integrate with any app

Loom Video Downloader connects to any cloud service via Apify integrations:

  • Make - Automate multi-step workflows
  • Zapier - Connect with 5,000+ apps
  • Slack - Get run notifications in your channels
  • Airbyte - Pipe results into your warehouse
  • GitHub - Trigger runs from commits and releases
  • Google Drive - Export datasets straight to Sheets

You can also use webhooks to trigger downstream actions when a video finishes processing, like firing a transcription summary actor or pinging a Slack channel.


💡 Pro Tip: browse the complete ParseForge collection for more reference-data scrapers.


🆘 Need Help? Open our contact form to request a new actor, propose a custom project, or report an issue.


⚠️ Disclaimer. This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Loom or any of its subsidiaries. All trademarks mentioned are the property of their respective owners. The actor accesses only publicly shared Loom URLs and is intended for legitimate research, content, and archival workflows. Users are responsible for ensuring they hold the rights to download the recordings they submit and for compliance with Loom's Terms of Service.