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

# Workflow variables

Workflow variables let you store and reuse information within the scope of **a single [Workflow](/studio/concepts/workflows)**. They're great for:

* Storing an AI task's output
* Saving and reusing user input
* Organizing data returned from an API call

<Note>
  Workflow variables are only accessible in the Workflow they were created in. If you need a variable to be accessible in multiple Workflows, 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 Workflow variable

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

<Frame>
  <img src="https://mintcdn.com/botpress/RWKQxTh1qL1DGc-R/studio/concepts/variables/scopes/assets/workflow-variable-example.png?fit=max&auto=format&n=RWKQxTh1qL1DGc-R&q=85&s=543ecd0d6c57fdae8b1b7b72677ee944" alt="Workflow variable in a text card" width="1394" height="494" data-path="studio/concepts/variables/scopes/assets/workflow-variable-example.png" />
</Frame>
