# Loom transcript API — JSON output

**Use case:** 

Programmatic JSON access to Loom transcripts: share_id, title, owner, duration, transcript + segments. Pipe straight into any pipeline.

## Input

```json
{
  "shareUrls": [
    "https://www.loom.com/share/71c758748f60497fa1267c19ba667f57"
  ],
  "transcriptFormats": [
    "txt",
    "segments"
  ],
  "maxVideos": 10,
  "monitorMode": false,
  "alertOnNewVideo": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Video",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "duration_sec": {
    "label": "Sec",
    "format": "integer"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "video_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Loom Transcript Downloader — Video Captions to Text](https://apify.com/scrapersdelight/loom-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/loom-transcript-scraper) to learn more, explore other use cases, and run it yourself.