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

# Folder Variables

Folder variables are variables that are scoped to a specific folder. They are useful for storing variables that are used across multiple requests in a folder.

## Creating a Folder Variable

* Go to Folder Settings (can be accessed from dropdown menu of the folder in the sidebar)
* Go to Vars Tab
* Add your variable name, value, and an optional description for what the variable represents in the Pre Request Vars section
* Save your changes

<img src="https://mintcdn.com/bruno-a6972042-mintlify-b17edd9d/4ZZTU8eiH3cx9GUO/images/screenshots/variables/folder-variables.webp?fit=max&auto=format&n=4ZZTU8eiH3cx9GUO&q=85&s=1f1bb642dd1929b0dc375ce60eb8b70d" alt="Folder Variables" width="2472" height="888" data-path="images/screenshots/variables/folder-variables.webp" />

## Using a Folder Variable

You can use the `{{varName}}` syntax to use a folder variable in a request.

<img src="https://mintcdn.com/bruno-a6972042-mintlify-b17edd9d/4ZZTU8eiH3cx9GUO/images/screenshots/variables/folder-variables-usage.webp?fit=max&auto=format&n=4ZZTU8eiH3cx9GUO&q=85&s=864c9a733bd164cd778b75ad60742eff" alt="Folder Variables Usage" width="2472" height="1098" data-path="images/screenshots/variables/folder-variables-usage.webp" />

#### Access Folder Variable inside scripts

You can also use the `bru.getFolderVar()` function to get the value of a folder variable and use it inside your scripts.

```javascript theme={null}
let bearerToken = bru.getFolderVar("bearerToken");
```
