# Kappa.lol — Zapi reference > Upload a file and receive a short shareable link. **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/kappa-lol - 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 --- ## Kappa.lol **Category:** uploader · **Slug:** `kappa-lol` **Detail page:** https://zpi.web.id/api/uploader/kappa-lol Upload a file and receive a short shareable link. **Tags:** uploader, file-host ### Upload Upload a file via multipart and return the share URL. - **Method:** `POST` - **Endpoint:** `https://api.zpi.web.id/v1/uploader:kappa-lol/upload` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `file` | file | form | yes | File yang mau di-upload. | **cURL:** ```bash curl -X POST "https://api.zpi.web.id/v1/uploader:kappa-lol/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:kappa-lol/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:kappa-lol/upload", headers={"x-api-key": "YOUR_API_KEY"}, json={ "file": "photo.jpg" }) data = r.json() ``` **Example response:** ```json { "ok": true, "url": "https://kappa.lol/ZtVei2", "host": "kappa.lol", "fileName": "96fc0fc145454ad9457b51e17ae68a55.jpg", "fileSize": 67105, "uploadedAt": "2026-05-27T13:37:52.769Z" } ``` --- _Generated: 2026-08-02T14:27:40.126Z_