Open Graph Checker
Enter a URL to check its Open Graph tags. See how your page looks when shared on Facebook, Twitter, LinkedIn, and Slack.
What Are Open Graph Tags?
Open Graph (OG) tags are HTML meta tags that control how your page appears when shared on social media platforms like Facebook, LinkedIn, Twitter/X, Slack, Discord, and more. Without OG tags, platforms will try to guess your page title, description, and image — often with poor results.
When properly configured, OG tags ensure your content looks professional and compelling when shared, leading to higher click-through rates and more referral traffic from social media.
Essential Open Graph Tags
og:title
The title shown in social media cards. Keep it under 90 characters for best display.
<meta property="og:title" content="Your Page Title">og:description
A brief description shown below the title. Keep it under 200 characters.
<meta property="og:description" content="A brief description of your page content.">og:image
The image displayed in the card. Use 1200x630px for best results across all platforms. Must be an absolute URL.
<meta property="og:image" content="https://example.com/image.jpg">og:url
The canonical URL for the page. Prevents duplicate content when the same page is shared via different URLs.
<meta property="og:url" content="https://example.com/page">og:type
The type of content. Use 'website' for homepages, 'article' for blog posts, 'product' for e-commerce.
<meta property="og:type" content="website">OG Image Best Practices
Size: 1200 x 630px
This aspect ratio works well on Facebook, LinkedIn, Twitter, and Slack.
File size under 5MB
Large images may not be fetched by some platforms. Keep it optimized.
Use absolute URLs
Always use the full URL (https://...) for og:image, not relative paths.
Add text to images
Include your title or key message on the image for maximum impact.
Twitter Card Tags
Twitter/X uses its own meta tags (twitter:card, twitter:title, twitter:description, twitter:image) but falls back to OG tags when Twitter-specific tags are missing.
For best results, set twitter:card to summary_large_image for a full-width image card, or summary for a smaller thumbnail. Our checker validates both Open Graph and Twitter Card tags.