返回展示区

phonium

scarlmao70
Python
OSINT CLIs

phonium is a phone-number intelligence toolkit that aggregates several signals about a number. Its WhatsApp module calls the WhatsApp Data API's profile endpoint and surfaces the full presence block: whether the number is a WhatsApp user, whether it is a business account, the display name, the about text, and the profile picture.

It is a clean example of consuming a single GET call and mapping the response fields straight into a report, without any caching or fallback logic — the minimal viable integration.

它使用的端点

GET /number/{phone} — returns isUser, isBusiness, pushname, about, and the profile picture URL in one call.

同样的通话

PYTHON
import requests

url = "https://wp-data.p.rapidapi.com/number/14155552671"
headers = {
    "x-rapidapi-host": "wp-data.p.rapidapi.com",
    "x-rapidapi-key": "YOUR_RAPIDAPI_KEY",
}
data = requests.get(url, headers=headers).json()
print(data["isBusiness"], data.get("pushname"))

使用相同的 API 进行构建

本项目基于公开的 WhatsApp 数据 API 运行。获取密钥后,几分钟内即可发出您的第一个请求。

用户评价

来自满意客户的真实评价

4.5/5 (176 评论)