No custom app needed: Zapier's native Webhooks action can call the Screenshotty API directly. Your Zap sends the URL (from a form entry, a new CRM row, an RSS item), and the returned hosted image URL flows into any downstream step.
Recipe: add a 'Webhooks by Zapier' action → choose Custom Request → method POST → URL and JSON below. The response field `url` is the screenshot, ready to map into later steps.
// Method: POST// URL: https://api.screenshotty.link/api/v1/screenshot// Headers:// X-Api-Key: {{your Screenshotty API key}}// Content-Type: application/json// Data:{"url": "{{trigger_url_field}}","full_page": true,"block_cookie_banner": true,"response_type": "json"}// → map the response field "url" into your next step
Webhooks by Zapier is the only building block required — no marketplace app to install.
response_type=json returns a hosted image URL Zapier can map straight into Slack, Gmail, or Sheets.
New form submission, new row, new deal, schedule — anything that yields a URL can drive a capture.
Full-page, ad blocking, viewport, PDF output — every API parameter is available in the JSON body.
Map the webhook response's url field into the Slack/Gmail step's image or attachment field. Because it's a hosted image URL, most apps render it inline without downloading.
Yes — use the Schedule by Zapier trigger (daily/weekly) feeding the webhook action, and you have no-code visual monitoring.
Sign up at screenshotty.link (free tier: 100 screenshots/month, no credit card) and copy your key from the dashboard. Keep it in the integration's credential store rather than pasting it into shared workflows.
Set "format": "application/pdf" in the JSON body — useful for archiving pages to Drive or Dropbox from the same Zap.