Introduction

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.

Before You Begin

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.

Key Concepts

Document Types

Use the document_type field to scope your search to a specific documentation portal:

ValueDescription
RESTWix REST APIs (default)
SDKWix JavaScript SDK
VELOVelo JavaScript APIs for Wix sites
WDSWix Design System
BUILD_APPSBuilding Wix apps
WIX_HEADLESSWix Headless / external apps
CLIWix CLI
BUSINESS_SOLUTIONSBusiness solutions and workflows

Result Ranking

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.

Content Truncation

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

Did this help?