Integration configuration
Upload to S3 or other S3 compatible storage
You can use Snaprun screenshot API to take website screenshots and upload them directly to Amazon S3 and any other S3-compatible storage like Cloudflare R2, Backblaze, and others.
Create your Access Key and Secret Key
AWS or other S3 compatible storage provider need provide you with access key and secret key.
Configure access to S3 in Snaprun
Go to the Integrations page, click on the "Configure" button for S3
Enter your Endpoint, Access Key and Secret Key, click on the "Test Configuration" button to verify the connection and click on the "Save Configuration" button to save the configuration.
- AWS us-east-1 region use https://s3.amazonaws.com, other regions use https://s3.'region'.amazonaws.com, where region is the region of your bucket.
- Cloudflare R2 use https://'account_id'.r2.cloudflarestorage.com, where bucket is the name of your bucket.
API parameters
You can use "store","storeBucket","storeKey" parameters to store the screenshot to S3.
curl -X POST https://api.snaprun.co/v1/screenshot \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"url": "https://example.com",
"width": 1920,
"height": 1080,
"format": "png",
"blockCookieBanners": true,
"store":true
}'