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 account records.
const { data } = await vj.createAccount({ handle: "style_la", platform: "instagram", niche: "fashion", });
const { data } = await vj.listOrGetAccounts();
const { data } = await vj.listOrGetAccounts({ id: "acc_..." });
const { data } = await vj.updateAccount( { niche: "lifestyle" }, { id: "acc_..." }, );
const { data } = await vj.deleteAccount({ id: "acc_..." });