Loom

Manage Loom video recordings - list, share, and get analytics via Loom API.

modbender Updated 12 repo stars

File contents

Loom

Video messaging platform.

Environment

export LOOM_API_KEY="xxxxxxxxxx"

List Videos

curl "https://api.loom.com/v1/videos" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Get Video Details

curl "https://api.loom.com/v1/videos/{video_id}" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Get Video Transcript

curl "https://api.loom.com/v1/videos/{video_id}/transcript" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Update Video

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

curl -X DELETE "https://api.loom.com/v1/videos/{video_id}" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Get Analytics

curl "https://api.loom.com/v1/videos/{video_id}/insights" \
  -H "Authorization: Bearer $LOOM_API_KEY"

Links

modbender/skill-library-mcp/tree/main/data/loom commit 38bc81c00f

Frequently asked questions

npx skillmds@latest add modbender/loom