Build JSON-LD BreadcrumbList markup for Google rich results — define your navigation path, preview the SERP trail, validate, and copy the code.
Paste a full URL and we'll auto-generate breadcrumb items from its path segments.
The Breadcrumb Schema Generator creates BreadcrumbList structured data in JSON-LD format. When this markup is present on a page and Google indexes it, the search result displays the breadcrumb navigation path (e.g. Home › Blog › SEO) in place of the raw URL, giving users more context about where the page sits in your site hierarchy — and typically improving click-through rate.
Breadcrumb structured data is one of the most widely supported rich result types. It appears in both mobile and desktop Google Search, and is also used by Bing. All processing happens in your browser — no data is sent to any server.
Use the Parse from URL feature to automatically generate breadcrumb items from any URL's path segments, then edit the names as needed before copying the code.
https://example.com/blog/seo/tips), and the tool will generate items automatically from each path segment.<script type="application/ld+json"> block and paste it anywhere inside your page's <head>.The generator builds a valid BreadcrumbList object following the Schema.org specification and Google's breadcrumb guidelines:
{ "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [...] }{ "@type": "ListItem", "position": N, "name": "…", "item": "https://…" }item property (URL) is omitted if the field is left blank — but Google strongly recommends providing it for all items.The "Parse from URL" feature uses the browser's URL API to extract pathname, splits on /, filters empty segments, and builds one breadcrumb per segment. Names are derived by replacing hyphens and underscores with spaces, then title-casing each word. The first item is always "Home" pointing to the site origin.