Quickstart
Start a FoxVector client in minutes
This page seeds the copy-to-clipboard onboarding experience required for the developer portal.
Create a FoxVector client
import { createFoxVectorClient } from "@codeshiver/foxvector-sdk";
const client = createFoxVectorClient({
apiKey: process.env.FOXVECTOR_API_KEY,
baseUrl: "https://foxvector.codeshiver.com/api/bff",
});Request catalog data
const catalog = await client.catalog.listProducts();
console.log(catalog.items);