# Loom Downloader — Zapi reference > Download video rekaman dari Loom. Tempel URL share publik. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/downloader/loom - Endpoint catalog: https://zpi.web.id/category/downloader - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Loom Downloader **Category:** downloader · **Slug:** `loom` **Detail page:** https://zpi.web.id/api/downloader/loom Download video rekaman dari Loom. Tempel URL share publik. **Tags:** loom, downloader, video ### Download Download media dari Loom. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/downloader:loom/download` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | Loom media URL (video or post). Query params are fine. | | `quality` | enum(144|240|360|480|720|1080|max) | query | no | Max video quality — `max` = best available. Ignored when audioOnly=true. | | `audioOnly` | enum(true|false) | query | no | Set `true` to fetch audio only. Default `false` (video). | | `audioFormat` | enum(mp3|opus|ogg|wav) | query | no | Audio container when audioOnly=true. Default mp3. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/downloader:loom/download?url=https%3A%2F%2Fwww.loom.com%2Fshare%2Fc43a642f815f4378b6f80a889bb73d8d&quality=1080&audioOnly=false&audioFormat=mp3" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/downloader:loom/download?url=https%3A%2F%2Fwww.loom.com%2Fshare%2Fc43a642f815f4378b6f80a889bb73d8d&quality=1080&audioOnly=false&audioFormat=mp3", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/downloader:loom/download?url=https%3A%2F%2Fwww.loom.com%2Fshare%2Fc43a642f815f4378b6f80a889bb73d8d&quality=1080&audioOnly=false&audioFormat=mp3", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "url": "https://cdn.loom.com/sessions/transcoded/c43a642f815f4378b6f80a889bb73d8d.mp4?Policy=...&Key-Pair-Id=KQOSYIR44AIC0&Signature=...", "type": "video", "filename": "loom_c43a642f815f4378b6f80a889bb73d8d.mp4", "provider": "loom", "originalUrl": "https://www.loom.com/share/c43a642f815f4378b6f80a889bb73d8d" } ``` --- _Generated: 2026-08-02T14:27:47.588Z_