DocumentationPython SDK
Python SDK
Python SDK (coming soon).
Coming soon
The Python SDK is in progress. Use the REST API for now.
REST example (requests)
import requests
payload = {
"url": "https://example.com",
"format": "png",
"full_page": True
}
headers = {"X-Access-Key": "your-key"}
response = requests.post(
"https://api.ssapi.com/v1/capture",
json=payload,
headers=headers,
timeout=60
)
print(response.json())
Updated 1 day ago