> ## 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.

# vidjutsu account

> Create, edit, and manage account records

## Create an account

Create an account record.

```bash theme={null}
vidjutsu account create --platform instagram --name "nyc_streetstyle"
```

### Options

| Flag         | Type   | Description                                   |
| ------------ | ------ | --------------------------------------------- |
| `--platform` | string | Platform name (required)                      |
| `--name`     | string | Account name (required)                       |
| `--niche`    | string | Primary niche                                 |
| `--handle`   | string | Social media handle                           |
| `--bio`      | string | Profile biography                             |
| `--pfp`      | string | Profile picture URL                           |
| `--link`     | string | Link in bio URL                               |
| `--tag`      | string | Key-value tag, e.g. `brand=acme` (repeatable) |

**Rate limit:** unmetered — account operations have no daily limit.

## Edit an account

Update an account record:

```bash theme={null}
vidjutsu account edit acc_8k2x --bio "Updated bio" --link "https://newshop.com"
```

## List accounts

```bash theme={null}
vidjutsu account list
```

Filter by tag:

```bash theme={null}
vidjutsu account list --tag brand=acme
```

## Get account details

```bash theme={null}
vidjutsu account get acc_8k2x
```

## Delete an account

```bash theme={null}
vidjutsu account delete acc_8k2x
```
