# Google Drive Downloader — Zapi reference > Direct download URL. Support file besar dengan virus scan warning. **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/google-drive - 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 --- ## Google Drive Downloader **Category:** downloader · **Slug:** `google-drive` **Detail page:** https://zpi.web.id/api/downloader/google-drive Direct download URL. Support file besar dengan virus scan warning. **Tags:** google, drive, download ### Download - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/downloader:google-drive/download` - **Cache TTL:** 360s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL atau ID file/folder Google Drive | **cURL:** ```bash curl "https://api.zpi.web.id/v1/downloader:google-drive/download?url=https%3A%2F%2Fdrive.google.com%2Ffile%2Fd%2F1CaJig7lPfOqKGtsv34jWophJ1Q1LLhJC%2Fview%3Fusp%3Dsharing" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/downloader:google-drive/download?url=https%3A%2F%2Fdrive.google.com%2Ffile%2Fd%2F1CaJig7lPfOqKGtsv34jWophJ1Q1LLhJC%2Fview%3Fusp%3Dsharing", { 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:google-drive/download?url=https%3A%2F%2Fdrive.google.com%2Ffile%2Fd%2F1CaJig7lPfOqKGtsv34jWophJ1Q1LLhJC%2Fview%3Fusp%3Dsharing", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": "1CaJig7lPfOqKGtsv34jWophJ1Q1LLhJC", "name": "image.jpeg", "size": "237.61 KB", "type": "file", "viewUrl": "https://drive.google.com/file/d/1CaJig7lPfOqKGtsv34jWophJ1Q1LLhJC/view", "mimeType": "image/jpeg", "downloadUrl": "https://drive.usercontent.google.com/download?id=1CaJig7lPfOqKGtsv34jWophJ1Q1LLhJC&export=download&authuser=0" } ``` --- _Generated: 2026-08-02T14:28:29.344Z_