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 키를 소스 코드에 커밋합니다. 추적되는 소스 코드에 키가 포함된 경우, 이를 발견한 사람은 누구든 비용을 청구할 수 있으며, 비밀 키 스캐너는 이를 빠르게 찾아냅니다. 따라서 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 리뷰)