Open Graph, Twitter Cards, favicons, structured data, and more. Build rich link previews in minutes, not days.
curl "https://metapeek.grabshot.dev/v1/extract?url=https://github.com" \
-H "x-api-key: mp_your_api_key"
One API call returns all the metadata you need to render beautiful link previews.
Extract og:title, og:image, og:description, twitter:card, and all other social meta tags.
Automatically finds the best favicon, apple-touch-icon, or shortcut icon for any site.
Parse schema.org structured data for rich information like ratings, prices, and articles.
Extract metadata from up to 10 URLs in a single API call. Perfect for feeds and imports.
Built for speed with smart timeouts and redirect following. Average response under 500ms.
Automatically discovers RSS and Atom feeds linked on the page for content syndication.
Enter any URL to see what MetaPeek extracts. No API key needed for the demo.
Extracting metadata...
Start free. Upgrade when you need more.
forever
for side projects
for production apps
for scale
const res = await fetch(
'https://metapeek.grabshot.dev/v1/extract?url=https://github.com',
{ headers: { 'x-api-key': 'mp_your_key' } }
);
const data = await res.json();
console.log(data.og.title);
// → "GitHub"
import requests
r = requests.get(
'https://metapeek.grabshot.dev/v1/extract',
params={'url': 'https://github.com'},
headers={'x-api-key': 'mp_your_key'}
)
print(r.json()['og']['title'])
# → "GitHub"