# Loom Video Downloader (`parseforge/loom-video-downloader`) Actor

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.

- **URL**: https://apify.com/parseforge/loom-video-downloader.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** Videos, Automation, Other
- **Stats:** 33 total users, 6 monthly users, 96.2% runs succeeded, 2 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

![ParseForge Banner](https://github.com/ParseForge/apify-assets/blob/ad35ccc13ddd068b9d6cba33f323962e39aed5b2/banner.jpg?raw=true)

## 🎥 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 teams | Archive Loom recordings into your CMS |
| Agencies and consultancies | Repurpose client recordings into content |
| Sales enablement | Index demo videos with full transcripts |
| Researchers and accessibility | Convert recordings into searchable text |
| Engineering teams | Sync Loom uploads into internal video apps |
| Compliance and audit | Capture 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

| Field | Type | Name | Description |
|---|---|---|---|
| <code>urls</code> | array of strings | Loom Video URLs | Required. Loom share or embed URLs (e.g. `https://www.loom.com/share/abc123`). |
| <code>maxItems</code> | integer | Max Items | Free users: limited to 10 items (preview). Paid users: optional, max 1,000,000. |
| <code>includeTranscript</code> | boolean | Include Transcript | When true, fetches the full video transcript. Default <code>true</code>. |
| <code>includeCaptions</code> | boolean | Include Captions (VTT) | When true, fetches WebVTT captions with timestamps. Default <code>true</code>. |
| <code>proxyConfiguration</code> | object | Proxy Configuration | Optional. Loom works without proxy; enable only if you hit rate limits. |

Example 1. Three Loom videos with transcripts and captions.

```json
{
  "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).

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

> ⚠️ **Good to Know:** turning off <code>includeTranscript</code> and <code>includeCaptions</code> 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

| Field | Type | Example |
|---|---|---|
| 🆔 <code>videoId</code> | string | <code>e41353f2fe1c43eba6c6829693e0f2c5</code> |
| 🔗 <code>videoUrl</code> | string (url) | `https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5` |
| 📝 <code>title</code> | string | `Q2 Product Update` |
| 📃 <code>description</code> | string | `Walkthrough of new dashboard features...` |
| 🖼️ <code>thumbnailUrl</code> | string (url) | `https://cdn.loom.com/sessions/.../thumb.jpg` |
| ⏱️ <code>durationSeconds</code> | number | `345` |
| 👁️ <code>viewCount</code> | number | `1240` |
| 👤 <code>ownerName</code> | string | `Jane Smith` |
| 🖼️ <code>ownerAvatarUrl</code> | string (url) | `https://cdn.loom.com/avatars/jane.jpg` |
| 📅 <code>createdAt</code> | ISO datetime | `2026-04-12T14:30:00.000Z` |
| 🔗 <code>downloadUrl</code> | string (url) | `https://cdn.loom.com/sessions/.../video.mp4` |
| 📝 <code>transcript</code> | string or null | `Welcome to our Q2 update. Today I want to walk you through...` |
| 📋 <code>captions</code> | string or null | `WEBVTT\n\n00:00.000 --> 00:05.000\nWelcome to our Q2 update.\n...` |
| 🔒 <code>isPublic</code> | boolean | <code>true</code> |
| 📅 <code>scrapedAt</code> | ISO datetime | `2026-05-08T12:00:00.000Z` |

#### 📦 Sample records

##### 1. Typical record (with transcript and captions)

```json
{
  "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

```json
{
  "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)

```json
{
  "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

| Approach | Cost | Coverage | Refresh | Filters | Setup |
|---|---|---|---|---|---|
| **⭐ Loom Video Downloader** *(this Actor)* | $5 free credit, then pay-per-use | Any public Loom URL | **Live per run** | Per-URL | ⚡ 2 min |
| Browser screen-record | Time-intensive | Limited | Stale | None | 🐢 Hours |
| Loom paid export tools | $$ monthly | Loom-only | Live | Limited | ⏳ Hours |
| Build your own scraper | Engineering hours | Full once built | Whenever you maintain it | Custom 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](https://console.apify.com/sign-up?fpr=vmoqkp) (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

<table>
<tr>
<td width="50%" valign="top">

#### 📊 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

</td>
<td width="50%" valign="top">

#### 🏢 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

</td>
</tr>
<tr>
<td width="50%" valign="top">

#### 🎯 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

</td>
<td width="50%" valign="top">

#### 🛠️ 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

</td>
</tr>
</table>

***

### 🌟 Beyond business use cases

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

<table>
<tr>
<td width="50%">

#### 🎓 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

</td>
<td width="50%">

#### 🎨 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

</td>
</tr>
<tr>
<td width="50%">

#### 🤝 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

</td>
<td width="50%">

#### 🧪 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

</td>
</tr>
</table>

***

### 🔌 Automating Loom Video Downloader

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

- **Node.js** - call it via the [Apify JS SDK](https://docs.apify.com/sdk/js).
- **Python** - call it via the [Apify Python SDK](https://docs.apify.com/sdk/python).
- **REST** - hit it directly through the [Apify v2 API](https://docs.apify.com/api/v2).

**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](https://apify.com/pricing), 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 <code>maxItems</code>** (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.

### ⚖️ Is it legal to use Loom Video Downloader?

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](https://en.wikipedia.org/wiki/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](https://docs.apify.com/legal) for more.

### ❓ Frequently Asked Questions

<details>
<summary><b>💳 Do I need a paid Apify plan to run this actor?</b></summary>

No. You can start right now on the free Apify plan, which includes **$5 in monthly credit**. That is enough to run the actor several times and explore the output. Paid plans unlock higher item caps, more concurrent runs, and larger datasets. [Create a free Apify account here](https://console.apify.com/sign-up?fpr=vmoqkp).

</details>

<details>
<summary><b>🚨 What happens if my run fails or returns no results?</b></summary>

Failed runs are not charged. If a Loom URL fails (private, deleted, or rate-limited), the actor records the error on that record and continues with the rest. Re-run the actor or open our [contact form](https://tally.so/r/BzdKgA).

</details>

<details>
<summary><b>📏 How many Loom videos can I process per run?</b></summary>

Free users are limited to **10 videos per run** so you can preview the output. Paid users can raise <code>maxItems</code> up to **1,000,000** per run.

</details>

<details>
<summary><b>🔒 Can it download private Loom videos?</b></summary>

No. The actor only processes publicly shared Loom videos. Private videos behind workspace login are not accessible.

</details>

<details>
<summary><b>📝 What languages do transcripts support?</b></summary>

Transcripts come directly from Loom's transcription service and support all languages Loom supports. The actor passes them through as-is.

</details>

<details>
<summary><b>🧑‍💻 Can I call this actor from my own code?</b></summary>

Yes. Apify exposes every actor as a REST endpoint and ships first-class SDKs for [Node.js](https://docs.apify.com/sdk/js) and [Python](https://docs.apify.com/sdk/python). You can start a run, read the dataset, and handle webhooks from your own app in a few lines.

</details>

<details>
<summary><b>📤 How do I export the data?</b></summary>

Every Apify dataset can be downloaded in one click as CSV, JSON, JSONL, Excel, HTML, XML, or RSS. You can also pull results programmatically via the [Apify API](https://docs.apify.com/api/v2) or stream into BigQuery, S3, and other destinations through built-in integrations.

</details>

<details>
<summary><b>📅 Can I schedule the actor to run automatically?</b></summary>

Yes. Use the Apify scheduler to run the actor on any cadence, from hourly to monthly. Drop new Loom URLs into the input each cycle.

</details>

<details>
<summary><b>🏪 Can I use the data commercially?</b></summary>

Yes. Recordings you have rights to are yours to use in your own internal pipelines, products, and reports.

</details>

<details>
<summary><b>💼 Which plan should I pick for production use?</b></summary>

Apify's Starter and Scale plans are designed for production workloads. Pick the plan that matches your video volume and refresh cadence.

</details>

<details>
<summary><b>🛠️ Can you add transcript timestamps as an array?</b></summary>

Open the [contact form](https://tally.so/r/BzdKgA) and tell us about your use case. We add features regularly when there is a clear use case behind the request.

</details>

<details>
<summary><b>⚖️ Is it legal to download Loom videos with this Actor?</b></summary>

Only download recordings you have rights to. You are responsible for compliance with copyright, privacy, and Loom's Terms of Service in your jurisdiction.

***

</details>

### 🔌 Integrate with any app

Loom Video Downloader connects to any cloud service via [Apify integrations](https://apify.com/integrations):

- [**Make**](https://docs.apify.com/platform/integrations/make) - Automate multi-step workflows
- [**Zapier**](https://docs.apify.com/platform/integrations/zapier) - Connect with 5,000+ apps
- [**Slack**](https://docs.apify.com/platform/integrations/slack) - Get run notifications in your channels
- [**Airbyte**](https://docs.apify.com/platform/integrations/airbyte) - Pipe results into your warehouse
- [**GitHub**](https://docs.apify.com/platform/integrations/github) - Trigger runs from commits and releases
- [**Google Drive**](https://docs.apify.com/platform/integrations/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.

***

### 🔗 Recommended Actors

- [**🎬 YouTube AI Transcriber**](https://apify.com/parseforge/youtube-ai-transcriber) - Transcribe YouTube videos with metadata
- [**🎤 Audio Transcriber**](https://apify.com/parseforge/audio-transcriber) - Convert audio recordings to structured text
- [**🖼️ Auto Video Thumbnail Generator**](https://apify.com/parseforge/auto-video-thumbnail-generator) - Generate thumbnails from video uploads
- [**📰 Article Extractor**](https://apify.com/parseforge/article-extractor) - Extract clean article text from any URL
- [**📄 PDF to JSON Parser**](https://apify.com/parseforge/pdf-to-json-parser) - Convert PDFs into structured JSON

> 💡 **Pro Tip:** browse the complete [ParseForge collection](https://apify.com/parseforge) for more reference-data scrapers.

***

**🆘 Need Help?** [**Open our contact form**](https://tally.so/r/BzdKgA) 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.

# Actor input Schema

## `urls` (type: `array`):

List of Loom video URLs to download (e.g. https://www.loom.com/share/abc123). Supports /share/ and /embed/ URLs.

## `maxItems` (type: `integer`):

Free users: Limited to 10 videos (preview). Paid users: Optional, max 1,000,000

## `includeTranscript` (type: `boolean`):

Fetch the full video transcript text. Adds a 'transcript' field with the spoken content.

## `includeCaptions` (type: `boolean`):

Fetch captions in WebVTT format with timestamps. Adds a 'captions' field.

## `proxyConfiguration` (type: `object`):

Optional proxy settings. Loom works without proxy. Only enable if you experience rate limiting.

## Actor input object example

```json
{
  "urls": [
    "https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5"
  ],
  "maxItems": 10,
  "includeTranscript": true,
  "includeCaptions": true
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "urls": [
        "https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5"
    ],
    "maxItems": 10,
    "includeTranscript": true,
    "includeCaptions": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/loom-video-downloader").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "urls": ["https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5"],
    "maxItems": 10,
    "includeTranscript": True,
    "includeCaptions": True,
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/loom-video-downloader").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "urls": [
    "https://www.loom.com/share/e41353f2fe1c43eba6c6829693e0f2c5"
  ],
  "maxItems": 10,
  "includeTranscript": true,
  "includeCaptions": true
}' |
apify call parseforge/loom-video-downloader --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=parseforge/loom-video-downloader",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Loom Video Downloader",
        "description": "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.",
        "version": "1.0",
        "x-build-id": "x5QazMqd3zYv2sZtL"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/parseforge~loom-video-downloader/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-parseforge-loom-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/parseforge~loom-video-downloader/runs": {
            "post": {
                "operationId": "runs-sync-parseforge-loom-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/parseforge~loom-video-downloader/run-sync": {
            "post": {
                "operationId": "run-sync-parseforge-loom-video-downloader",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "urls"
                ],
                "properties": {
                    "urls": {
                        "title": "Loom Video URLs",
                        "type": "array",
                        "description": "List of Loom video URLs to download (e.g. https://www.loom.com/share/abc123). Supports /share/ and /embed/ URLs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "minimum": 1,
                        "maximum": 1000000,
                        "type": "integer",
                        "description": "Free users: Limited to 10 videos (preview). Paid users: Optional, max 1,000,000"
                    },
                    "includeTranscript": {
                        "title": "Include Transcript",
                        "type": "boolean",
                        "description": "Fetch the full video transcript text. Adds a 'transcript' field with the spoken content.",
                        "default": true
                    },
                    "includeCaptions": {
                        "title": "Include Captions (VTT)",
                        "type": "boolean",
                        "description": "Fetch captions in WebVTT format with timestamps. Adds a 'captions' field.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Optional proxy settings. Loom works without proxy. Only enable if you experience rate limiting."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
