> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vidjutsu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Accounts

> Create, list, update, and delete account records.

## Create

```typescript theme={null}
const { data } = await vj.createAccount({
  handle: "style_la",
  platform: "instagram",
  niche: "fashion",
});
```

## List all

```typescript theme={null}
const { data } = await vj.listOrGetAccounts();
```

## Get by ID

```typescript theme={null}
const { data } = await vj.listOrGetAccounts({ id: "acc_..." });
```

## Update

```typescript theme={null}
const { data } = await vj.updateAccount(
  { niche: "lifestyle" },
  { id: "acc_..." },
);
```

## Delete

```typescript theme={null}
const { data } = await vj.deleteAccount({ id: "acc_..." });
```

## Rate limit

Unmetered — account operations have no daily limit and no per-call charge.
