Overview
The Valori Cloud data-plane REST API collections, records, and vector search over HTTPS.
The Valori Cloud API is a REST interface over HTTPS at https://app.valori.systems.
It gives your project a collections/records/search data plane without you
managing a node, a URL, or a project identifier — a project API key is the
only thing your application needs.
Every request is authenticated with an Authorization: Bearer vlk_...
header. The key alone resolves which project and node the request reaches —
see Authentication.
Base URL
https://app.valori.systems
What's covered here
This reference documents the customer-facing data plane: collections, records, search, and node health. It does not cover dashboard-only operations (project lifecycle, snapshots, billing) — those are managed through the Valori Cloud dashboard, not the public API.
SDKs
# No installation required — plain HTTPSfrom valori import ValoriClient
client = ValoriClient(api_key="vlk_your_project_api_key")
import { ValoriClient } from "@valori/client-sdk"
const client = new ValoriClient({ apiKey: "vlk_your_project_api_key" })
Neither SDK asks for a project ID or a node URL — the API key resolves both. See the Python and TypeScript packages.