Create Open Graph images, Twitter cards, and LinkedIn previews at scale. Turn any URL into a perfectly sized social media preview image with a single API call.
Automatically create Open Graph images for every page on your site without manual design work.
Pre-configured viewport sizes for Twitter (2:1), Facebook (1.91:1), and LinkedIn (1.2:1) preview cards.
Screenshots capture the live page, so previews always reflect the latest content.
Generate thousands of preview images per hour with our high-throughput API.
const response = await fetch('https://blog.hootsuite.com/wp-content/uploads/2023/03/Twitter-image-sizes.jpg', {
method: 'POST',
headers: {
'x-api-key': 'sk_live_your_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://your-blog.com/post/123',
viewport: { width: 1200, height: 630 },
format: 'png'
})
});