{"openapi":"3.1.0","info":{"title":"Silicone Valley Product Catalog API","description":"API for browsing and searching Silicone Valley silicone products. Premium silicone products for kitchen, baby, beauty, home, tech, pets, and fitness. BPA-free food-grade silicone. Free shipping on orders over $50.","version":"1.0.0","contact":{"email":"info@siliconevalley.shop","url":"https://siliconevalley.shop"}},"servers":[{"url":"https://siliconevalley.shop","description":"Production"}],"paths":{"/api/products":{"get":{"operationId":"listProducts","summary":"List and search products","description":"Returns products as JSON-LD with Schema.org Product types. Supports filtering by category, search query, sorting, and pagination.","parameters":[{"name":"category","in":"query","schema":{"type":"string","enum":["kitchen","baby","beauty","home","tech","pets","fitness"]},"description":"Filter by category"},{"name":"q","in":"query","schema":{"type":"string"},"description":"Search query"},{"name":"sort","in":"query","schema":{"type":"string","enum":["price-asc","price-desc","rating","newest"]},"description":"Sort order"},{"name":"limit","in":"query","schema":{"type":"integer","default":50,"maximum":200},"description":"Max results"},{"name":"offset","in":"query","schema":{"type":"integer","default":0},"description":"Pagination offset"}],"responses":{"200":{"description":"Product list in JSON-LD format","content":{"application/ld+json":{"schema":{"$ref":"#/components/schemas/ProductList"}}}}}}},"/api/products/{slug}":{"get":{"operationId":"getProduct","summary":"Get product by slug","description":"Returns a single product with complete Schema.org Product structured data.","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"},"description":"Product URL slug"}],"responses":{"200":{"description":"Product details in JSON-LD","content":{"application/ld+json":{}}},"404":{"description":"Product not found"}}}},"/api/feed/merchant":{"get":{"operationId":"getMerchantFeed","summary":"Google Merchant Center XML feed","description":"Complete product feed in Google Shopping RSS 2.0 format with all required and recommended attributes.","responses":{"200":{"description":"Product feed XML","content":{"application/xml":{}}}}}},"/api/feed/openai":{"get":{"operationId":"getOpenAiFeed","summary":"OpenAI Agentic Commerce product feed","description":"Complete product feed as tab-separated values, per the OpenAI product feed specification. OpenAI ingests feeds by upload or SFTP rather than by fetching a URL, so this endpoint produces the file rather than serving as an ingestion point. is_eligible_checkout is false on every row until this merchant is approved for Instant Checkout.","responses":{"200":{"description":"Tab-separated product feed","content":{"text/tab-separated-values":{}}}}}},"/llms.txt":{"get":{"operationId":"getLlmsTxt","summary":"LLM-readable site summary","description":"Concise markdown summary of the store, categories, popular products, and API endpoints for LLM consumption.","responses":{"200":{"description":"Plain text markdown","content":{"text/plain":{}}}}}},"/llms-full.txt":{"get":{"operationId":"getLlmsFullTxt","summary":"Complete product catalog for LLMs","description":"Exhaustive plain text catalog with every product detail, specification, and FAQ.","responses":{"200":{"description":"Plain text catalog","content":{"text/plain":{}}}}}}},"components":{"schemas":{"ProductList":{"type":"object","properties":{"@context":{"type":"string"},"@type":{"type":"string","enum":["ItemList"]},"numberOfItems":{"type":"integer"},"itemListElement":{"type":"array","items":{"$ref":"#/components/schemas/ProductListItem"}}}},"ProductListItem":{"type":"object","properties":{"@type":{"type":"string","enum":["ListItem"]},"position":{"type":"integer"},"item":{"$ref":"#/components/schemas/Product"}}},"Product":{"type":"object","properties":{"@type":{"type":"string","enum":["Product"]},"name":{"type":"string"},"description":{"type":"string"},"url":{"type":"string","format":"uri"},"sku":{"type":"string"},"gtin13":{"type":"string"},"mpn":{"type":"string"},"brand":{"type":"object","properties":{"name":{"type":"string"}}},"material":{"type":"string"},"color":{"type":"string"},"offers":{"type":"object","properties":{"price":{"type":"number"},"priceCurrency":{"type":"string"},"availability":{"type":"string"}}},"aggregateRating":{"type":"object","properties":{"ratingValue":{"type":"number"},"reviewCount":{"type":"integer"}}}}}}}}