Website screenshots, especially those of complex web pages do not render instantly. Keeping a request open for seconds when you're capturing loads of pages quickly adds up to minutes or hours spent waiting.
What if your app could send us 30 screenshot requests in less than a second? Your app could get on with what it's doing while Urlbox does its thing.
Now you can do just that by providing a webhoook endpoint for Urlbox to send your screenshot to.
"webhook_url": "https://example.com/your_webhook_url"
To keep overhead to a minimum you can (optionally) use a HEAD request like the following:
Then, a few seconds later you'll receive something like this at your webhook endpoint:
If you use a POST request you'll probably want to use the asynchronous endpoint:
https://api.urlbox.io/v1/render
rather than the synchronous one:
https://api.urlbox.io/v1/render/sync
This, of course, works great in combination with storing your renders in your own S3 bucket.