> ## Documentation Index
> Fetch the complete documentation index at: https://botpress-charmenta-pr-732.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Bot variables

Bot variables let you store and reuse information **throughout your entire bot**.

Any information you assign to a bot variable will be accessible across all Workflows and conversations. This makes bot variables useful for storing global information about your bot, like:

* Your bot's name
* Your bot's version number
* Endpoints for your bot's API calls

<Warning>
  Bot variables aren't encrypted or stored securely. This means **an Autonomous Node can read and display any information you store in a bot variable**.

  Don't save sensitive information like API keys or passwords in bot variables—use [**configuration variables**](/studio/concepts/variables/scopes/configuration) instead.
</Warning>

<Tip>
  Need help getting started with variables? Check out our [introduction to variables](/studio/concepts/variables/overview).
</Tip>

## Read a bot variable

You can use `{{bot.variablename}}` or `@bot.variablename` to read a bot variable. For example, in a **Text** Card:

<Frame>
  <img src="https://mintcdn.com/botpress-charmenta-pr-732/h09P9yXWd2mzSocK/studio/concepts/variables/scopes/assets/bot-variable-example.png?fit=max&auto=format&n=h09P9yXWd2mzSocK&q=85&s=9d675df3c18b9102419272d755cd9c5f" alt="Bot variable in a text card" width="1394" height="494" data-path="studio/concepts/variables/scopes/assets/bot-variable-example.png" />
</Frame>
