{"openapi":"3.1.0","info":{"title":"I Swear, Lava Lamp Repair API","description":"API for lava lamp repair service. Part of the Platphorm News network.","version":"1.0.0","contact":{"name":"Platphorm News","url":"https://platphormnews.com"},"license":{"name":"Proprietary"}},"servers":[{"url":"https://lavalamprepair.platphormnews.com","description":"Production server"}],"paths":{"/api/health":{"get":{"summary":"Health check","description":"Check API health status","operationId":"getHealth","tags":["System"],"responses":{"200":{"description":"API is healthy","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string","example":"ok"},"version":{"type":"string","example":"1.0.0"},"timestamp":{"type":"string","format":"date-time"}}}}}}}}},"/api/actions/stripe":{"post":{"summary":"Create checkout session","description":"Initialize a Stripe checkout session for lamp repair","operationId":"createCheckout","tags":["Checkout"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["productId"],"properties":{"productId":{"type":"string","enum":["basic-repair","full-restoration","vintage-revival"],"description":"The repair service product ID"}}}}}},"responses":{"200":{"description":"Checkout session created","content":{"application/json":{"schema":{"type":"object","properties":{"clientSecret":{"type":"string"}}}}}},"400":{"description":"Invalid product ID"},"500":{"description":"Server error"}}}}},"components":{"schemas":{"Product":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"description":{"type":"string"},"priceInCents":{"type":"integer"},"features":{"type":"array","items":{"type":"string"}},"popular":{"type":"boolean"}}},"Error":{"type":"object","properties":{"error":{"type":"string"},"message":{"type":"string"}}}}},"tags":[{"name":"System","description":"System endpoints"},{"name":"Checkout","description":"Payment and checkout"}],"externalDocs":{"description":"LLM Documentation","url":"https://lavalamprepair.platphormnews.com/llms-full.txt"}}