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

# Track

> Monitor vanity URL changes, username changes, avatar updates, and banner changes across Discord.

# Track

> Monitor vanity URL changes, username changes, avatar updates, and banner changes across Discord.

## How it works

Track listens for changes across every server the bot is in and posts alerts to channels you configure. Each alert type is configured independently — you can enable just vanities, just names, or all four.

## Vanities

Post an alert whenever a Discord server drops or changes their vanity URL, making it potentially available.

<Accordion title="Setup">
  <CodeGroup>
    ```bash Syntax theme={null} theme={null}
    ;track vanities (#channel)
    ```

    ```bash Example theme={null} theme={null}
    ;track vanities #vanity-alerts
    ```
  </CodeGroup>
</Accordion>

<Accordion title="Disable">
  ```bash theme={null} theme={null}
  ;track vanities disable
  ```
</Accordion>

## Names

Post an alert whenever a user changes their Discord username. Shows the old name and when it may become available to claim.

<Accordion title="Setup">
  <CodeGroup>
    ```bash Syntax theme={null} theme={null}
    ;track names (#channel)
    ```

    ```bash Example theme={null} theme={null}
    ;track names #name-alerts
    ```
  </CodeGroup>
</Accordion>

<Accordion title="Disable">
  ```bash theme={null} theme={null}
  ;track names disable
  ```
</Accordion>

<Note>
  Discord holds usernames for 14 days after they're released. The alert includes the estimated availability date.
</Note>

## Avatars

Post an alert whenever a user changes their profile picture.

<Accordion title="Setup">
  <CodeGroup>
    ```bash Syntax theme={null} theme={null}
    ;track pfps (#channel)
    ```

    ```bash Example theme={null} theme={null}
    ;track pfps #pfp-updates
    ```
  </CodeGroup>
</Accordion>

<Accordion title="Disable">
  ```bash theme={null} theme={null}
  ;track pfps disable
  ```
</Accordion>

## Banners

Post an alert whenever a user changes their profile banner.

<Accordion title="Setup">
  <CodeGroup>
    ```bash Syntax theme={null} theme={null}
    ;track banners (#channel)
    ```

    ```bash Example theme={null} theme={null}
    ;track banners #banner-updates
    ```
  </CodeGroup>
</Accordion>

<Accordion title="Disable">
  ```bash theme={null} theme={null}
  ;track banners disable
  ```
</Accordion>

## Lookup

Browse recently released usernames by character length, or view recently dropped vanity URLs.

<Accordion title="Lookup">
  <CodeGroup>
    ```bash Syntax theme={null} theme={null}
    ;lookup (number)
        ;lookup vanities
    ```

    ```bash Example theme={null} theme={null}
    ;lookup 4
        ;lookup 2b
        ;lookup vanities
    ```
  </CodeGroup>
</Accordion>

## Check Vanity

Check whether a specific vanity URL is currently taken or available.

<Accordion title="Check Vanity">
  <CodeGroup>
    ```bash Syntax theme={null} theme={null}
    ;checkvanity (vanity)
    ```

    ```bash Example theme={null} theme={null}
    ;checkvanity s1n
        ;checkvanity discord
    ```
  </CodeGroup>
</Accordion>
