Use Case
📱

Generate Beautiful Social Media Preview Cards Automatically

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.

Auto-generate OG images

Automatically create Open Graph images for every page on your site without manual design work.

Perfect aspect ratios

Pre-configured viewport sizes for Twitter (2:1), Facebook (1.91:1), and LinkedIn (1.2:1) preview cards.

Dynamic content

Screenshots capture the live page, so previews always reflect the latest content.

Batch processing

Generate thousands of preview images per hour with our high-throughput API.

Code Example

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'
  })
});