Manage Loom video recordings - list, share, and get analytics via Loom API.
Scanned 2/12/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill loom --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Loom?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-loom)More formats (shields.io, HTML) on the badges page.
---
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
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
End-to-end marketing campaign planning and execution. Covers audience research, positioning, campaign angle definition, landing page copy, email sequences, social posts, ad copy, short-form video scripts, and content calendars. Use as the orchestration layer for multi-channel product launches.
Orchestrate multi-phase deep research with web search, memory retrieval, pattern matching, and synthesis into structured findings
Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory Use when: conversation memory, remember, memory persistence, long-term memory, chat history.
Delegate coding to OpenHands CLI (model-agnostic, LiteLLM).
Query Solana blockchain data with USD pricing — wallet balances, token portfolios with values, transaction details, NFTs, whale detection, and live network stats. Uses Solana RPC + CoinGecko. No API key required.