쇼케이스로 돌아가기

cid-hackathon

devanshverma26070
Python
대시보드

cid-hackathon is a social-media-intelligence (SOCMINT) platform that uses the WhatsApp Data API more completely than any other tool in this list. Its WhatsApp adapter fans a single number out across five endpoints and merges the results into one profile record.

This is the reference example for the full surface of the API: beyond the core profile lookup it also queries carrier metadata, a dedicated picture route, the leak-check signal, and the device-count endpoint. If you want to see every capability wired up in one place, this is it.

사용하는 엔드포인트

GET /number/{phone} — core presence + profile.
GET /carrier/{phone} — carrier / line metadata.
GET /picture/{phone} — dedicated profile-picture route.
GET /leakcheck/{phone} — breach / leak signal.
GET /device_count/{phone} — linked-device count.

같은 전화

PYTHON
ENDPOINTS = ["number", "carrier", "picture", "leakcheck", "device_count"]

def enrich(phone, key):
    out = {}
    for ep in ENDPOINTS:
        r = requests.get(
            f"https://wp-data.p.rapidapi.com/{ep}/{phone}",
            headers={"x-rapidapi-host": "wp-data.p.rapidapi.com",
                     "x-rapidapi-key": key},
        )
        out[ep] = r.json()
    return out

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

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

사용자 리뷰

만족한 고객들의 실제 리뷰

4.5/5 (176 리뷰)