The Igor Docs Search API lets you search across all Wix developer documentation portals — REST APIs, SDK, Velo, Wix Design System, CLI, and more. It returns ranked results by semantic relevance, making it well-suited for powering AI assistants and developer tools.
The API exposes two endpoints depending on how you want to consume the results:
POST /v1/docs/search — Returns a structured JSON list of DocumentEntry objects. Use this when you need to process, filter, or display results programmatically.POST /v1/docs/search/markdown — Returns a single pre-formatted markdown string. Use this when you want to pass results directly to an LLM without additional processing.Use the document_type field to scope your search to a specific documentation portal:
| Value | Description |
|---|---|
REST | Wix REST APIs (default) |
SDK | Wix JavaScript SDK |
VELO | Velo JavaScript APIs for Wix sites |
WDS | Wix Design System |
BUILD_APPS | Building Wix apps |
WIX_HEADLESS | Wix Headless / external apps |
CLI | Wix CLI |
BUSINESS_SOLUTIONS | Business solutions and workflows |
Results are ranked by semantic relevance score (relevance_score in range [0, 1]). Both endpoints interleave method and article results in a repeating method, method, article, article pattern, so both reference and conceptual content always appear regardless of their individual scores.
Set lines_in_each_result to receive truncated snippets instead of full content. Method documents use section-aware truncation — each section (--- Code Example ---, --- Response Shape ---, etc.) is trimmed independently. When content is truncated, a contextual hint is appended pointing to the full article or method schema.
Last updated: 12 July 2026