# WhatsApp Bussines Profile — Zapi reference > WhatsApp bussines profile lookup by phone number. **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/whatsapp - 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 --- ## WhatsApp Bussines Profile **Category:** social-media · **Slug:** `whatsapp` **Detail page:** https://zpi.web.id/api/social-media/whatsapp WhatsApp bussines profile lookup by phone number. **Tags:** social, whatsapp, bussines ### Get profile - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/social-media:whatsapp/profile` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `number` | string | query | yes | Nomor WhatsApp dengan kode negara, hanya angka | **cURL:** ```bash curl "https://api.zpi.web.id/v1/social-media:whatsapp/profile?number=6287833764462" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/social-media:whatsapp/profile?number=6287833764462", { 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/social-media:whatsapp/profile?number=6287833764462", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "link": "https://wa.me/6287833764462", "name": "Zaileys", "number": "6287833764462", "accountType": "Akun Bisnis", "profilePhoto": "https://pps.whatsapp.net/v/t61.24694-24/432314569_2676781202495455_7260058970300294157_n.jpg?ccb=11-4&oh=01_Q5Aa4gGu8wPG9F6t1jLUnOLSDYeIpwtpBgshnvD3ug4QkjmN8A&oe=6A1C527D&_nc_sid=5e03e0&_nc_cat=103" } ``` --- _Generated: 2026-08-02T14:32:28.479Z_