Python SDK — 7 APIs in One Package

Published March 25, 2026 · 2 min read

Our official Python SDK gives you type-hinted access to all 7 APIs. Install, import, done.

Install

pip install api16761

Screenshot

from api16761 import API16761

api = API16761("YOUR_KEY")

img = api.screenshot("https://github.com", full_page=True, width=1920)
with open("screenshot.png", "wb") as f:
    f.write(img)

PDF Export

pdf = api.pdf("https://example.com", landscape=True)
with open("page.pdf", "wb") as f:
    f.write(pdf)

QR Code

qr = api.qr("https://16761.tech", size=400, dark_color="#1a1a2e")
with open("qr.png", "wb") as f:
    f.write(qr)

Email Verification

result = api.verify_email("user@gmail.com")
print(result["valid"], result["disposable"])

All 7 Methods

api.screenshot(url, ...)   # URL → PNG/JPEG bytes
api.pdf(url, ...)          # URL → PDF bytes
api.metadata(url)          # URL → dict with OG tags
api.qr(text, ...)          # Text → QR PNG/SVG
api.shorten(url, ...)      # URL → Short link dict
api.verify_email(email)    # Email → Validation dict
api.extract_text(url, ...) # URL → Text dict
Get Free API Key →