Breadcrumb Schema Generator
Build JSON-LD BreadcrumbList markup for SEO. Enter the breadcrumb trail (name + URL), then copy the generated snippet.
Position: 1
Position: 2
Position: 3
Generated JSON-LD
{ "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com/" }, { "@type": "ListItem", "position": 2, "name": "Blog", "item": "https://www.example.com/blog" }, { "@type": "ListItem", "position": 3, "name": "Post Title", "item": "https://www.example.com/blog/post-title" } ] }
Implementation Tips
- Breadcrumbs should match visible navigation on the page.
- Use absolute URLs (HTTPS) for each crumb.
- Place JSON-LD in a
<script type="application/ld+json">
tag. - Validate with Google Rich Results Test.
Uses schema.org BreadcrumbList. Ensure order and URLs are correct.