Extract Open Graph tags, title, description, favicon, and images from any URL with a single GET request. Build link previews in seconds.
Page title and meta description
og:title, og:description, og:image, og:type
Resolved favicon URL for the domain
twitter:card, twitter:title, twitter:image
curl "https://api-snap.com/api/meta?url=https://github.com" \
-H "Authorization: Bearer snp_your_key"
# {"title":"GitHub","description":"...","og":{"title":"...","image":"..."},"favicon":"..."}const res = await fetch(
"https://api-snap.com/api/meta?url=https://example.com",
{ headers: { Authorization: "Bearer snp_your_key" } }
);
const { title, description, og, favicon } = await res.json();import requests
r = requests.get(
"https://api-snap.com/api/meta",
params={"url": "https://github.com"},
headers={"Authorization": "Bearer snp_your_key"},
)
meta = r.json()
print(f"Title: {meta['title']}")
print(f"OG Image: {meta['og']['image']}")Build rich link preview cards like Slack, Twitter, and iMessage
Check Open Graph and meta tags across pages in your SEO toolkit
Extract titles and descriptions for RSS readers and news aggregators
Preview how URLs will appear when shared on social media
Open Graph, favicons, and more. One GET request per URL.
Get Your Free API Key