# Gofile — Zapi reference > Upload file tanpa batas size. Reset expiry tiap download. **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/uploader/gofile - Endpoint catalog: https://zpi.web.id/category/uploader - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Gofile **Category:** uploader · **Slug:** `gofile` **Detail page:** https://zpi.web.id/api/uploader/gofile Upload file tanpa batas size. Reset expiry tiap download. **Tags:** upload, file, unlimited ### Upload File Upload file tanpa batas size. Reset expiry tiap download. - **Method:** `POST` - **Endpoint:** `https://api.zpi.web.id/v1/uploader:gofile/upload` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `file` | file | form | yes | File yang mau di-upload. Tanpa batas size. | **cURL:** ```bash curl -X POST "https://api.zpi.web.id/v1/uploader:gofile/upload" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "file": "archive.zip" }' ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/uploader:gofile/upload", { method: "POST", headers: { "x-api-key": process.env.ZAPI_KEY, "Content-Type": "application/json" }, body: JSON.stringify({ "file": "archive.zip" }) }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.post("https://api.zpi.web.id/v1/uploader:gofile/upload", headers={"x-api-key": "YOUR_API_KEY"}, json={ "file": "archive.zip" }) data = r.json() ``` **Example response:** ```json { "mime": "image/jpeg", "note": "Timer 10 hari reset setiap ada yang download. File praktis permanent selama aktif diakses.", "service": "gofile", "fileName": "96fc0fc145454ad9457b51e17ae68a55.jpg", "fileSize": 67105, "expiresAt": "2026-06-02T09:43:34.331Z", "expiresIn": "10 hari idle (reset tiap download)", "publicUrl": "https://gofile.io/d/bO1T4k", "directLink": null, "uploadedAt": "2026-05-23T09:43:34.332Z", "contentCode": null, "oneTimeDownload": false } ``` --- _Generated: 2026-08-02T14:25:28.389Z_