This is the official PHP SDK for the ScreenshotMAX API.
It allows you to easily capture high-quality screenshots of any URL directly from your applications. The SDK handles authentication, request signing, and provides a simple interface to integrate ScreenshotMAX’s powerful screenshot services into your Python projects.
Get started in minutes. Just sign up to receive your access and secret keys, import the client, and you’re ready to capture screenshots.”
The SDK client is synchronized with the latest ScreenshotMAX API options.
composer require screenshotmax/sdk
Use the SDK to generate signed or unsigned URLs for screenshots, PDFs, web scraping, or animated screenshot—without executing the request. Or fetch and download the result directly. You have full control over when and how each capture runs.
use ScreenshotMax\SDK;
use ScreenshotMax\Options\ScreenshotOptions;
$sdk = new SDK('<ACCESS_KEY>', '<SECRET_KEY>');
$opts = new ScreenshotOptions();
$opts->url = 'https://example.com';
$opts->format = 'png';
$sdk->screenshot->setOptions($opts);
$url = $sdk->screenshot->getUrl();
$result = $sdk->screenshot->fetch();
file_put_contents('screenshot.png', $result['data']);
<?php
use ScreenshotMax\SDK;
use ScreenshotMax\Options\ScrapeOptions;
$sdk = new SDK('<ACCESS_KEY>', '<SECRET_KEY>');
$opts = new ScrapeOptions();
$opts->url = 'https://example.com';
$opts->format = 'html';
$sdk->scrape->setOptions($opts);
$url = $sdk->scrape->getUrl();
$result = $sdk->scrape->fetch();
file_put_contents('scrape.html', $result['data']);
<?php
use ScreenshotMax\SDK;
use ScreenshotMax\Options\PDFOptions;
$sdk = new SDK('<ACCESS_KEY>', '<SECRET_KEY>');
$opts = new PDFOptions();
$opts->url = 'https://example.com';
$opts->pdf_paper_format = 'a4';
$sdk->pdf->setOptions($opts);
$url = $sdk->pdf->getUrl();
$result = $sdk->pdf->fetch();
file_put_contents('pdf.pdf', $result['data']);
<?php
use ScreenshotMax\SDK;
$sdk = new SDK('<ACCESS_KEY>', '<SECRET_KEY>');
# get all tasks from account
$tasks = $sdk->task->get_tasks()
print_r($tasks['data']);
/* {"tasks":[{
"id":5678133109850112,
"name":"Test CRON",
"api":"screenshot",
"query":
"url=https%3A%2F%2Fexample.com",
"frequency":"every_day",
"crontab":"25 13 * * *",
"timezone":"Etc/UTC",
"enabled":true,
"created":1747229104,
"last_run":1748611516,
"runs":18}]}
*/
screenshotmax/sdk
is released under the MIT license.