{"openapi":"3.1.0","info":{"title":"Pro.Miami API","version":"1.0","description":"Submit a homeowner lead. Pro.Miami forwards the lead contact information to Miami-Dade contractors who service the requested trade and neighborhood. Pro.Miami does not screen or verify contractors.","contact":{"email":"hello@pro.miami"}},"servers":[{"url":"https://pro.miami"}],"paths":{"/api/leads":{"post":{"summary":"Submit a homeowner lead","description":"Routes the lead to matching Miami-Dade contractors. Pro.Miami does not screen, verify, license, or insure contractors.","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Lead"}}}},"responses":{"200":{"description":"Lead accepted","content":{"application/json":{"schema":{"type":"object","properties":{"ok":{"type":"boolean"},"id":{"type":"string"}}}}}},"400":{"description":"Validation error"},"429":{"description":"Rate limited (3 per IP per hour)"}}}}},"components":{"schemas":{"Lead":{"type":"object","required":["trade","neighborhood","homeowner_name","homeowner_email","homeowner_phone","job_description"],"properties":{"trade":{"type":"string","description":"See /llms-full.txt for the full trade list (38+)."},"neighborhood":{"type":"string","description":"Miami-Dade neighborhood slug (e.g. brickell, doral, kendall). See /llms-full.txt."},"homeowner_name":{"type":"string","minLength":2,"maxLength":80},"homeowner_email":{"type":"string","format":"email"},"homeowner_phone":{"type":"string"},"job_description":{"type":"string","minLength":10,"maxLength":2000},"budget_range":{"type":"string","enum":["under_500","500_2000","2000_5000","5000_plus","not_sure"]},"urgency":{"type":"string","enum":["emergency","this_week","this_month","flexible"]}}}}}}