> ## Documentation Index
> Fetch the complete documentation index at: https://botpress-charmenta-pr-716.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-716/fDfwzVYaSajs2s-J/studio/concepts/variables/scopes/assets/bot-variable-example.png?fit=max&auto=format&n=fDfwzVYaSajs2s-J&q=85&s=87c5a0ec0edd46a1f4f35ef952811b03" alt="Bot variable in a text card" width="1394" height="494" data-path="studio/concepts/variables/scopes/assets/bot-variable-example.png" />
</Frame>
