What problem does it solve? Writing Wix integrations from memory leads to wrong endpoints, incorrect request bodies, and invalid enum values. This Skill verifies the exact Wix API endpoint, HTTP method, request/response shape, fields, and errors against the official Wix documentation before any code is written. ## Core Features & Use Cases - Semantic doc search: Query the Wix docs search API with natural language to get condensed method docs with endpoints, request examples, and response shapes in one call. - Docs tree browsing: Navigate the entire Wix documentation as markdown by appending .md to any dev.wix.com/docs URL, drilling from portals down to individual method pages. - Structured API spec queries: Run JavaScript queries over the Wix REST API index via the code-mode endpoint to enumerate methods, resolve exact schemas, and expand enum types. - Use Case: Before writing code to create a booking, search for the create-booking method, confirm its publicUrl, required fields, and response schema, then write the call with confidence. ## Quick Start Look up the exact Wix REST endpoint and request body for creating a booking before writing any code.