openapi: 3.1.0 info: title: Contractor Quote Check API version: 0.1.0 description: Tools for auditing and comparing contractor quotes. Not legal, engineering, pricing, contractor-vetting, or building-code advice. servers: - url: https://checkmycontractorquote.com/passive-api paths: /quote-audit: post: operationId: audit_quote summary: Audit a contractor quote for missing details and follow-up questions. requestBody: required: true content: application/json: schema: type: object properties: text: type: string required: [text] responses: '200': description: Quote checklist result. /compare-quotes: post: operationId: compare_quotes summary: Compare up to three contractor quotes side by side. requestBody: required: true content: application/json: schema: type: object properties: quote_a: {type: string} quote_b: {type: string} quote_c: {type: string} responses: '200': description: Side-by-side comparison checklist. /lead: post: operationId: save_lead summary: Save a product lead without sending email. responses: '200': {description: Lead captured.} /checkout-intent: post: operationId: save_checkout_interest summary: Save checkout interest without charging. responses: '200': {description: Checkout intent captured. No payment collected.}