> ## Documentation Index
> Fetch the complete documentation index at: https://botpress-pb-update-api.mintlify.site/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-pb-update-api/dB6fsns919bYYGbE/studio/concepts/variables/scopes/assets/workflow-variable-example.png?fit=max&auto=format&n=dB6fsns919bYYGbE&q=85&s=6a954bd2d437fb66975ea8e671025abb" alt="Workflow variable in a text card" width="1394" height="494" data-path="studio/concepts/variables/scopes/assets/workflow-variable-example.png" />
</Frame>
