Free Breadcrumb Schema Generator
Breadcrumb schema markup helps search engines understand your website's structure and displays the navigation path in search results. This improves user experience by showing visitors exactly where a page sits within your site hierarchy before they even click.
How to Add Breadcrumb Schema to Your Website
-
Add the first breadcrumb item (usually your homepage)
-
Add subsequent items following your site's hierarchy
-
Each item needs a name and URL
-
The last item is typically the current page
-
Copy the JSON-LD and add it to every page
Breadcrumb JSON-LD Example
Here's an example of valid Breadcrumb structured data that you can use as a reference:
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://example.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Products",
"item": "https://example.com/products"
},
{
"@type": "ListItem",
"position": 3,
"name": "Headphones",
"item": "https://example.com/products/headphones"
}
]
} Tip: Always validate your schema markup using Google's Rich Results Test before deploying to production.
Frequently Asked Questions
Does Breadcrumb Schema affect rankings?
While not a direct ranking factor, breadcrumbs improve site structure understanding and user experience, which can indirectly benefit SEO.
Should I include the current page in breadcrumbs?
Yes, include the current page as the last item but make it non-clickable or without a link in your visible breadcrumb navigation.
Can I use Breadcrumb Schema without visible breadcrumbs?
While technically possible, it's best practice to have visible breadcrumbs that match your schema markup for consistency.
Other Schema Generators
FAQ Page Schema
Mark up your Frequently Asked Questions to appear in Google's rich results with expandable Q&A.
Article Schema
Enhance your blog posts and news articles with structured data for better search visibility.
Local Business Schema
Help your business appear in local search results and Google Maps with proper structured data.
Product Schema
Display product information, prices, and reviews directly in Google search results.
Event Schema
Promote your events in Google search with dates, location, and ticket information.
Job Posting Schema
Get your job listings featured in Google for Jobs search results.