JavaScript SDK
The JavaScript/TypeScript SDK supports programmatic access to Axis APIs.
Authentication
export VELIKEY_API_KEY="<your-api-key>"
Example
const apiKey = process.env.VELIKEY_API_KEY;
if (!apiKey) throw new Error("VELIKEY_API_KEY is required");
// TODO: Replace with the actual SDK client once the SDK reference is finalized.
console.log("SDK initialized");