Breadcrumb Schema Generator
Generate BreadcrumbList structured data to show the page hierarchy in search results. Each item needs a name and absolute URL.
Trail
Item 1
Item 2
Preview
An approximation of how this schema may appear in search results. Actual rendering varies by platform.
Home
Code
Insert the following code into the <head> section of your webpage.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://example.com"
}
]
}
</script>