Minimal screenshot example
Capture a page with a lightweight Python client.
from snapshot_site import SnapshotSiteClient
client = SnapshotSiteClient(api_key="ss_live_xxx")
result = client.screenshot({
"url": "https://snapshot-site.com/pricing",
"width": 1440,
"format": "png",
"fullSize": True,
"hideCookie": True,
})
print(result.get("link"))
