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.

1 dependency
Typed (py.typed)
npm SDK port
PyPIGitHub

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.

transportLive hostCache / DB-only host
"proxy" (default)whatsapp-proxy.checkleaked.cc/number_cache on the same host
"rapidapi"wp-data.p.rapidapi.comwp-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 fresh

An 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):

get_profile / get_profile_no_picture / check_cached returns a dict with exists=False (and code=NUMBER_NOT_FOUND).
search with zero matches returns an empty page (success=False, data['docs'] == []).
get_device_count for a non-WhatsApp number returns success=False.
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.

ClassWhen
ValidationErrorBad arguments (raised before any request; no .status).
AuthError401 / 403 — missing/invalid/unsubscribed key.
RateLimitError429 — carries .retry_after_ms when the server sent Retry-After.
HttpErrorAny other non-2xx (e.g. 400, 5xx); has .status, .body.
TimeoutErrorRequest exceeded the timeout.
NetworkErrorTransport failure.
WhatsAppDataErrorBase 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

4.5/5 (176 reviews)