Python SDK — whatsapp-data-sdk
Official Python client for the WhatsApp Data API. Typed responses, one dependency (requests), cache-first lookups, and a clean exception hierarchy.
Install
pip install whatsapp-data-sdk
Python 3.8-3.13 supported. Ships with a py.typed marker for full type-checker support (mypy, pyright).
Quick start
from whatsapp_data_sdk import WhatsAppDataClient
client = WhatsAppDataClient(api_key="YOUR_KEY") # sent as x-rapidapi-key
profile = client.get_profile("59898297150")
print(profile.get("exists"), profile.get("about"), profile.get("profilePic"))Authentication & transport
Your key is always sent in x-rapidapi-key. Choose where requests go with transport.
| transport | Live host | Cache / DB-only host |
|---|---|---|
"proxy" (default) | whatsapp-proxy.checkleaked.cc | /number_cache on the same host |
"rapidapi" | wp-data.p.rapidapi.com | wp-data-db-only.p.rapidapi.com |
client = WhatsAppDataClient(api_key="RAPIDAPI_KEY", transport="rapidapi")
Override URLs/hosts via base_url, cache_base_url, rapidapi_host, rapidapi_cache_host.
Cache-first lookups (save money)
check_cached() reads the cheap cache / DB-only endpoint first and only falls back to a paid live check on a true miss.
r1 = client.check_cached("59898297150") # cacheFirst (default)
print(r1["_source"]) # "cache" | "live"
r2 = client.check_cached("59898297150", mode="cacheOnly") # never a live call
r3 = client.check_cached("59898297150", mode="live") # always freshAn authoritative cached not-on-WhatsApp record counts as a hit (no wasteful live re-check); only a true NOT_IN_DATABASE miss falls through to live.
API reference
Every method maps 1:1 to a marketplace endpoint - same coverage as the npm SDK, snake_case naming.
# Profile & pictures
client.get_profile(number, telegram=True, include_carrier=True) # Get Profile Information
client.get_profile_no_picture(number) # (No profile pic)
pic = client.get_last_picture(number) # JPEG bytes -> pic.content, pic.to_data_uri()
client.get_device_count(number) # Device count
client.get_osint_info(number) # OSINT Info
# Breaches
client.get_phone_breaches(number, limit=50) # built-in (no external key)
client.get_phone_breaches_external(number, api_key="...") # your checkleaked.cc key
# Search & database
client.search(country_code="UY", is_business=True, limit=20) # Search
client.search_google_maps(latitude=-34.9, longitude=-56.16, radius=2000) # Search in Google Maps
client.get_leaked_numbers_info() # Leaked Numbers (500M) -> Drive link (MEGA tier)
client.download_entire_database() # Download the Entire DB -> Drive link (MEGA tier)
# Bulk
client.bulk_check(numbers) # live (max 50)
client.bulk_check_db_basic(numbers) # DB basic (max 1000)
client.bulk_check_db_full(numbers) # DB full (max 1000)
# Telegram / carrier
client.get_telegram_profile("59898297150") # experimental
client.get_telegram_profile(["num1", "num2"])
client.carrier_lookup(number) # Carrier Lookup
client.carrier_lookup_alt(number, page=2) # Carrier Lookup Alternative"Not found" resolves — it does not raise
A number not on WhatsApp is a normal result, so these resolve (never raise):
p = client.get_profile("14155552671")
if not p.get("exists"):
print("not on WhatsApp")What does raise: invalid number (400), auth (401/403), rate limit (429), timeout, network, 5xx.
Per-request options
Every method accepts timeout (seconds) and retries:
client.get_profile("59898297150", timeout=5, retries=0)Errors
All failures raise a subclass of WhatsAppDataError.
| Class | When |
|---|---|
ValidationError | Bad arguments (raised before any request; no .status). |
AuthError | 401 / 403 — missing/invalid/unsubscribed key. |
RateLimitError | 429 — carries .retry_after_ms when the server sent Retry-After. |
HttpError | Any other non-2xx (e.g. 400, 5xx); has .status, .body. |
TimeoutError | Request exceeded the timeout. |
NetworkError | Transport failure. |
WhatsAppDataError | Base class. |
from whatsapp_data_sdk import AuthError, RateLimitError, WhatsAppDataError
try:
client.get_profile("59898297150")
except AuthError:
... # 401/403
except RateLimitError as e:
print(e.retry_after_ms)
except WhatsAppDataError as e:
print(e.status, e.body)POSTs (bulk_check, bulk_check_db_*) are not auto-retried, to avoid double-spending quota.
Phone number formats
Any format works — the SDK normalizes; the helpers are exported:
from whatsapp_data_sdk import to_digits, to_e164
to_digits("+598 98 297 150") # "59898297150" (path & live endpoints)
to_e164("59898297150") # "+59898297150" (bulk-DB endpoints require it)Related
What Our Users Say
Real reviews from our satisfied customers