wix-docs

Look up exact Wix API endpoints, methods, and schemas from official documentation.

Updated Apr 19, 2026
One-click install
npx skills add https://github.com/divinaarmuela/Content --skill wix-docs-divinaarmuela
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wix-docs
Source: https://github.com/divinaarmuela/Content/tree/main/.claude/skills/wix-docs
Command: npx skills add https://github.com/divinaarmuela/Content --skill wix-docs-divinaarmuela

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

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.

Frequently Asked Questions about wix-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find the right Wix API endpoint for a task?

Use the Wix semantic docs search by POSTing a natural-language search_term to the mcp-docs-search endpoint, which returns ranked method docs with endpoints and examples. Alternatively, browse the docs tree from llms.txt by appending .md to any dev.wix.com/docs path.

How to get the exact request and response schema for a Wix API method?

Query the code-mode search endpoint with a JavaScript function calling getResourceSchemaByUrl on the method's docs URL. It returns the structured requestBody, responses, parameters, and enum types without parsing large markdown pages.

Can I read Wix documentation without the Wix MCP tools?

Yes, plain curl works with zero dependencies. Append .md to any dev.wix.com/docs URL to read pages as markdown, and use the mcp-docs-search and code-mode endpoints for search and structured schema queries.

Does the Wix docs search cover SDK methods or only REST APIs?

The semantic search supports a document_type parameter covering REST, SDK, VELO, CLI, and other surfaces. The structured code-mode index covers REST API methods only, so SDK-only surfaces are found via search or the sdk.md portal.

Why should I avoid reading a full Wix method page at once?

Method pages often exceed 100 KB because they contain both REST and SDK sections with deeply nested inline schemas. Map the page outline with grep, then extract only the examples block or specific schema fields you need.