Vectorless
API Reference

API Reference

The Vectorless HTTP API — generated from the engine's OpenAPI spec.

Updated 2026

This page is a placeholder. The full reference will be generated from the engine's OpenAPI specification so it always matches the running engine.

The Vectorless engine exposes an HTTP API for ingesting documents and asking questions. Once the OpenAPI spec lands, every endpoint, schema, and example on this page will be rendered directly from it.

Planned surface

A sketch of the endpoints this reference will document:

MethodPathPurpose
POST/v1/documentsIngest a document and build its tree
GET/v1/documents/{id}Fetch a document's metadata and tree
POST/v1/askAsk a question (runs treewalk)
GET/v1/healthEngine health check

Authentication

Requests authenticate with an API key:

POST /v1/ask HTTP/1.1
Host: your-engine.example.com
Authorization: Bearer vl_...
Content-Type: application/json

{
  "document": "doc_123",
  "question": "What changed in Q3 revenue?",
  "strategy": "treewalk"
}

Prefer a typed client?

Most users should reach for an SDK rather than the raw API — the clients wrap auth, retries, and the response shapes for you.

On this page