New: Facebook profile pictures
Enable fbProfilePic to retrieve the picture linked to a Facebook leak. Images are versioned and remain available from cache.
返回展示区
DIGI-NETRA
Kauravsrestha-Duryodhan61
Python
OSINT CLIs
此代码库会将一个看似有效的 API 密钥提交到其源代码中。任何找到被跟踪源代码中的密钥的人都可能需要付费,而且密钥扫描器能够快速发现它们。请将您的密钥保存在环境变量或密钥管理器中,切勿将其放在已提交的代码中。
DIGI-NETRA is an India-focused number investigator. It prepends the 91 country code to a local number, calls the WhatsApp Data API profile endpoint, and persists the returned profile picture, normalized phone and about text.
It is featured here for the integration, not the implementation: the repository commits a live-looking RapidAPI key directly into its source. Do not copy that pattern — a committed key is billable by anyone who finds it, and secret scanners find them within minutes. Keep your key in an environment variable or secrets manager, never in tracked source.
它使用的端点
GET /number/91{localNumber} — profile picture URL, normalized phone, about text.
同样的通话
import os, requests
# Read the key from the environment — never commit it.
number = "91" + local_number
url = f"https://wp-data.p.rapidapi.com/number/{number}"
headers = {
"x-rapidapi-host": "wp-data.p.rapidapi.com",
"x-rapidapi-key": os.environ["RAPIDAPI_KEY"],
}
profile = requests.get(url, headers=headers).json()用户评价
来自满意客户的真实评价
4.5/5 (176 评论)