쇼케이스로 돌아가기

DIGI-NETRA

Kauravsrestha-Duryodhan61
Python
OSINT CLIs

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.

같은 전화

PYTHON
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()

동일한 API를 사용하여 빌드하세요

이 프로젝트는 공개 WhatsApp 데이터 API를 사용합니다. API 키를 발급받아 몇 분 안에 첫 번째 요청을 보내세요.

사용자 리뷰

만족한 고객들의 실제 리뷰

4.5/5 (176 리뷰)