# Loom Share URL Metadata Scraper

**Use case:** 

Scrape Loom share links for video title, owner, duration, views, thumbnail, transcript, and download metadata.

## Input

```json
{
  "videoUrls": [
    "https://www.loom.com/share/002508e86fde4232bb8de474eb5c65c4"
  ],
  "extractTranscript": false,
  "extractMetadata": true,
  "extractVideoUrl": true,
  "includeFullTranscriptText": false
}
```

## Output

```json
{
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  },
  "id": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "ownerName": {
    "label": "Owner",
    "format": "text"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Loom Scraper](https://apify.com/automation-lab/loom-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/loom-scraper) to learn more, explore other use cases, and run it yourself.