Open Graph & Twitter Card Parser API

GET any HTTPS URL — get back structured OG tags, Twitter Card metadata, canonical URL, title, description and favicon. Pure server-side parsing. No headless browser. No BYOK needed.

Get Free API Key View Docs
og:title, og:description, og:image — all tags
Twitter Card summary + summary_large_image
Canonical URL + favicon
No BYOK — pure scraping
Free tier: 500 requests/day
<200ms typical latency

Quick Start

curl "https://kiprio.com/v1/og/?url=https://github.com" \
  -H "X-Api-Key: YOUR_API_KEY"
// Response
{
  "url": "https://github.com",
  "title": "GitHub: Let's build from here",
  "description": "GitHub is where over 150 million developers shape the future of software...",
  "og": {
    "og:title": "GitHub: Let's build from here",
    "og:image": "https://github.githubassets.com/images/modules/site/social-cards/github-social.png",
    "og:type": "website"
  },
  "twitter": {
    "twitter:card": "summary_large_image",
    "twitter:site": "@github"
  },
  "canonical": "https://github.com/",
  "favicon": "https://github.com/favicon.ico"
}

Live Demo

Python Example

import requests

resp = requests.get(
    "https://kiprio.com/v1/og/",
    params={"url": "https://github.com"},
    headers={"X-Api-Key": "YOUR_API_KEY"},
)
resp.raise_for_status()
data = resp.json()
print(data["og"].get("og:image"))
print(data["twitter"].get("twitter:card"))

JavaScript / Node.js

const res = await fetch(
  "https://kiprio.com/v1/og/?url=" + encodeURIComponent("https://github.com"),
  { headers: { "X-Api-Key": "YOUR_API_KEY" } }
);
const { og, twitter, title, favicon } = await res.json();
console.log(og["og:image"]);      // social card image
console.log(twitter["twitter:card"]); // card type

Response Fields

FieldTypeDescription
urlstringThe resolved URL after any redirects
titlestringPage <title> tag
descriptionstringMeta description
ogobjectAll og:* meta tags as key/value pairs
twitterobjectAll twitter:* meta tags as key/value pairs
canonicalstringCanonical URL if present
faviconstringResolved favicon URL

Use Cases

Link Previews

Build rich link unfurl previews in chat apps or CMS editors — grab og:image and og:title from any pasted URL.

SEO Auditing

Check that all your pages have valid OG and Twitter Card tags before publishing. Pipe into your CI pipeline.

Social Sharing

Validate social share previews for LinkedIn, Facebook, and Twitter without manually sharing — test in seconds.

Content Curation

Enrich a list of URLs with titles, images and descriptions for newsletters or content aggregators automatically.

Browser Extensions

Power a browser extension that shows OG metadata for any tab — no client-side CORS issues, proxy through our API.

RAG Pipelines

Seed vector stores with structured page metadata. Pair with Summarize API for full-text extraction.

Pricing

Free
$0
  • 500 requests/day
  • 30 req/min
  • All OG + Twitter fields
  • No credit card

Sign Up Free
Business
$39/mo
  • 500,000 requests/day
  • 3,000 req/min
  • Priority support
  • Volume discounts

Start Business

Learn more: Open Graph API Python guide · fetch og:title, og:image, og:description in 5 lines.

Morty Proxy This is a proxified and sanitized view of the page, visit original site.