Loom Transcript Grabber avatar

Loom Transcript Grabber

Try for free

3 days trial then $5.00/month - No credit card required now

Go to Store
Loom Transcript Grabber

Loom Transcript Grabber

matthewjames/loom-transcript-grabber
Try for free

3 days trial then $5.00/month - No credit card required now

Grabs transcripts from Loom URLs.

## Quick Start Loom

Features

  • Gets Loom transcript from URLs, useful for incorporating into your workflow automations.
  • Supports multiple URLs.
  • Returns errors if unsuccessful and which URLs it had problems with.

Usage for workflows (Zapier / Make / Activepieces)

Payload to add your own custom inputs when making an API call:

1{
2   "loomUrls":[
3      {
4         "url":"https://www.loom.com/share/valid-video-id"
5      },
6      {
7         "url":"https://www.loom.com/share/invalid-video-id"
8      },
9      {
10         "url":"https://www.example.com"
11      }
12   ]
13}

Example of output with errors / invalid URLs

1[
2    {
3        "url":"https://www.loom.com/share/valid-video-id",
4        "transcript":"The transcript of the Loom",
5        "error": NULL
6    },
7    {
8        "url":"https://www.loom.com/share/invalid-video-id",
9        "transcript": NULL,
10        "error":"Invalid Loom URL"
11
12    },
13    {
14        "url":"https://www.example.com",
15        "transcript": NULL,
16        "error":"Failed to extract transcript. Check the URL."
17
18    }
19]

Make sure to call with /run-sync-get-dataset-items so that you can use the response within the workflow.

Developer
Maintained by Community

Actor Metrics

  • 2 monthly users

  • 2 stars

  • >99% runs succeeded

  • Created in Dec 2024

  • Modified 9 days ago