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
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
- Dashboard: https://www.loom.com/looms
- Docs: https://dev.loom.com