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

# Conversation variables

Conversation variables let you store and reuse information within the scope of **a single conversation**.

This makes them great for storing information that's only relevant to the current conversation, but that you need to access in multiple Workflows. For example:

* Items in a virtual shopping cart
* Conversation-specific preferences
* A checklist to track the completion of sub-Workflows

<Note>
  Information stored in conversation variables is deleted when the current conversation is over. If you need a variable to persist across multiple conversations, use a different [variable scope](/studio/concepts/variables/overview#variable-scopes).
</Note>

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

## Read a conversation variable

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

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