# Uguu — Zapi reference > Upload file ephemeral 3 jam. Max 128MB. **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/uguu - 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 --- ## Uguu **Category:** uploader · **Slug:** `uguu` **Detail page:** https://zpi.web.id/api/uploader/uguu Upload file ephemeral 3 jam. Max 128MB. **Tags:** upload, file, ephemeral ### Upload File Upload file ephemeral 3 jam. Max 128MB. - **Method:** `POST` - **Endpoint:** `https://api.zpi.web.id/v1/uploader:uguu/upload` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `file` | file | form | yes | File yang mau di-upload. Max 128MB, expire dalam 3 jam. | **cURL:** ```bash curl -X POST "https://api.zpi.web.id/v1/uploader:uguu/upload" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "file": "photo.jpg" }' ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/uploader:uguu/upload", { method: "POST", headers: { "x-api-key": process.env.ZAPI_KEY, "Content-Type": "application/json" }, body: JSON.stringify({ "file": "photo.jpg" }) }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.post("https://api.zpi.web.id/v1/uploader:uguu/upload", headers={"x-api-key": "YOUR_API_KEY"}, json={ "file": "photo.jpg" }) data = r.json() ``` **Example response:** ```json { "mime": "image/jpeg", "note": "File auto-dihapus dalam 3 jam.", "service": "uguu", "fileName": "96fc0fc145454ad9457b51e17ae68a55.jpg", "fileSize": 67105, "expiresAt": "2026-05-23T12:54:37.072Z", "expiresIn": "3h", "publicUrl": "https://d.uguu.se/cirNNnzq.jpg", "uploadedAt": "2026-05-23T09:54:37.072Z", "oneTimeDownload": false } ``` --- _Generated: 2026-08-02T14:25:54.419Z_