Schema markup

Breadcrumb schema generator

Generate BreadcrumbList JSON-LD for navigation hierarchies. Replaces the URL trail under your title in search results with the breadcrumb path.

Crumb 1
Crumb 2
Crumb 3
Breadcrumb JSON-LD·HTML
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Home",
      "item": "https://example.com/"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "Blog",
      "item": "https://example.com/blog"
    },
    {
      "@type": "ListItem",
      "position": 3,
      "name": "Post title",
      "item": "https://example.com/blog/post"
    }
  ]
}
</script>