Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create, list, update, and delete reference records.
const { data } = await vj.createReference({ platform: "instagram", url: "https://instagram.com/p/...", });
const { data } = await vj.listOrGetReferences(); // Filter by platform const { data } = await vj.listOrGetReferences({ platform: "instagram" });
const { data } = await vj.listOrGetReferences({ id: "ref_..." });
const { data } = await vj.updateReference( { platform: "tiktok" }, { id: "ref_..." }, );
const { data } = await vj.deleteReference({ id: "ref_..." });