# NGL Send — Zapi reference > NGL anonymous message sender. **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/social-media/ngl - Endpoint catalog: https://zpi.web.id/category/social-media - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## NGL Send **Category:** social-media · **Slug:** `ngl` **Detail page:** https://zpi.web.id/api/social-media/ngl NGL anonymous message sender. **Tags:** social, anonymous, ngl ### Send message - **Method:** `POST` - **Endpoint:** `https://api.zpi.web.id/v1/social-media:ngl/send` **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `username` | string | query | yes | Username target (dengan/tanpa @) | | `message` | string | body | yes | Pesan anonim yang dikirim | **cURL:** ```bash curl -X POST "https://api.zpi.web.id/v1/social-media:ngl/send" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "message": "Halo! Kamu orang baik banget :)" }' ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/social-media:ngl/send", { method: "POST", headers: { "x-api-key": process.env.ZAPI_KEY, "Content-Type": "application/json" }, body: JSON.stringify({ "message": "Halo! Kamu orang baik banget :)" }) }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.post("https://api.zpi.web.id/v1/social-media:ngl/send", headers={"x-api-key": "YOUR_API_KEY"}, json={ "message": "Halo! Kamu orang baik banget :)" }) data = r.json() ``` **Example response:** ```json { "sentAt": "2026-05-22T22:58:17.064Z", "message": "Halo! Kamu orang baik banget :)", "deviceId": "3fbb0394-1c99-41df-9335-74a3d350770d", "username": "zaadevofc", "questionId": "4bJB8rxuiNKraXYGuniR" } ``` --- _Generated: 2026-08-02T14:31:57.244Z_