# VK Downloader — Zapi reference > Download video dari VK (VKontakte). Tempel URL video. **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/vk - 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 --- ## VK Downloader **Category:** downloader · **Slug:** `vk` **Detail page:** https://zpi.web.id/api/downloader/vk Download video dari VK (VKontakte). Tempel URL video. **Tags:** vk, downloader, video ### Download Download media dari VK. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/downloader:vk/download` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | VK 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:vk/download?url=https%3A%2F%2Fvk.com%2Fvideo-22822305_456241864&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:vk/download?url=https%3A%2F%2Fvk.com%2Fvideo-22822305_456241864&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:vk/download?url=https%3A%2F%2Fvk.com%2Fvideo-22822305_456241864&quality=1080&audioOnly=false&audioFormat=mp3", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "url": "https://cbt.zpi.web.id/tunnel?id=83cw82eT4fWR4f-TnX9-p&exp=1782046359506&sig=vKkmfm6NyofDj06uY_0JHtrtE22xlyseX6xMbZWs10c&sec=MPrhmpH8m1ur5pGODSDg1lj5RRFWIr6HTFbHemuHE7g&iv=BcftIkJCA1S0zZl6RHfj-A", "type": "video", "filename": "VK Звонки (1080p).mp4", "provider": "vk", "originalUrl": "https://vk.com/video-22822305_456241864" } ``` --- _Generated: 2026-08-02T14:28:14.195Z_