@helixread/sdk
v0.3.1
Published
Official Helix TypeScript SDK — market grounding for AI agents
Maintainers
Readme
Helix TypeScript SDK
Official client for Helix — market grounding for AI agents.
Get a free API key (250 requests/day, no card) at helixread.com.
Install
Download the zip from /sdk/typescript/download (API key required), or copy this folder into your project.
npm install
npm run buildQuickstart
import { HelixClient } from "@helixread/sdk";
const hx = new HelixClient({
apiKey: process.env.HELIX_API_KEY!,
baseUrl: "https://helixread.com",
});
const ctx = await hx.getContext({ symbols: ["NVDA"], depth: "deep", citations: true });
const session = await hx.createSession(["NVDA", "AMD"]);
const guard = await hx.guardValidate("NVDA RSI is 42", { sessionId: session.session_id as string });Set HELIX_API_KEY once in .env — the client sends X-API-Key on every request automatically.
