Product Schema Generator

Ecommerce-ready Product JSON-LD with offers, pricing and ratings.

output.json
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Titan Pro Wrench",
  "description": "Heavy-duty 12-inch adjustable wrench for professional plumbers.",
  "sku": "TPW-12",
  "brand": {
    "@type": "Brand",
    "name": "Titan Tools"
  },
  "image": "https://example.com/wrench.jpg",
  "offers": {
    "@type": "Offer",
    "url": "https://example.com/product",
    "price": "39.99",
    "priceCurrency": "GBP",
    "availability": "https://schema.org/InStock"
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": 4.7,
    "reviewCount": 184
  }
}