Manage Loom video recordings - list, share, and get analytics via Loom API.
Scanned 2/12/2026
Install via CLI
openskills install openclaw/skills---
name: loom
description: Manage Loom video recordings - list, share, and get analytics via Loom API.
metadata: {"clawdbot":{"emoji":"🎥","requires":{"env":["LOOM_API_KEY"]}}}
---
# Loom
Video messaging platform.
## Environment
```bash
export LOOM_API_KEY="xxxxxxxxxx"
```
## List Videos
```bash
curl "https://api.loom.com/v1/videos" \
-H "Authorization: Bearer $LOOM_API_KEY"
```
## Get Video Details
```bash
curl "https://api.loom.com/v1/videos/{video_id}" \
-H "Authorization: Bearer $LOOM_API_KEY"
```
## Get Video Transcript
```bash
curl "https://api.loom.com/v1/videos/{video_id}/transcript" \
-H "Authorization: Bearer $LOOM_API_KEY"
```
## Update Video
```bash
curl -X PATCH "https://api.loom.com/v1/videos/{video_id}" \
-H "Authorization: Bearer $LOOM_API_KEY" \
-H "Content-Type: application/json" \
-d '{"title": "Updated Title", "privacy": "public"}'
```
## Delete Video
```bash
curl -X DELETE "https://api.loom.com/v1/videos/{video_id}" \
-H "Authorization: Bearer $LOOM_API_KEY"
```
## Get Analytics
```bash
curl "https://api.loom.com/v1/videos/{video_id}/insights" \
-H "Authorization: Bearer $LOOM_API_KEY"
```
## Links
- Dashboard: https://www.loom.com/looms
- Docs: https://dev.loom.com
No comments yet. Be the first to comment!
Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...