Fetch Open Graph, Twitter card, and standard meta tags from any public URL. Returns a structured link-preview object with title, description, image, favicon, and more.
POST /v1/url/metadataPer request| Field | Type | Description |
|---|---|---|
| url* | string | Fully-qualified public URL (http or https) |
| Field | Type | Description |
|---|---|---|
| url | string | Final URL after redirects |
| title | string | null | og:title, twitter:title, or <title> tag |
| description | string | null | og:description, twitter:description, or meta description |
| image | string | null | og:image or twitter:image URL |
| favicon | string | null | Favicon URL (link[rel=icon] or /favicon.ico) |
| site_name | string | null | og:site_name |
| type | string | null | og:type (e.g. article, website) |
| canonical_url | string | null | URL from <link rel=canonical> if present |
Request
{
"url": "https://github.com"
}Response
{
"url": "https://github.com/",
"title": "GitHub · Build and ship software on a single, collaborative platform",
"description": "Join the world's most widely adopted AI-powered developer platform where millions of developers, businesses, and the largest open source community build software that advances humanity.",
"image": "https://github.githubassets.com/assets/github-logo-55c5b9a1fe52.png",
"favicon": "https://github.com/favicon.ico",
"site_name": "GitHub",
"type": "website",
"canonical_url": null
}