Environment variables let you store sensitive values, such as API tokens, and reuse them in test prompts without exposing the raw value in each test. Use environment variables for values that differ by account, environment, or test setup. For example, you can store an API token once and reference it from a network request or cURL pre-request.Documentation Index
Fetch the complete documentation index at: https://docs.mobileboost.io/llms.txt
Use this file to discover all available pages before exploring further.
Add an environment variable
Enter the key and value
Enter a Key and Value.For example, use
api-token as the key and paste the matching token as the value.Use an environment variable in test prompts
Reference environment variables with{{env.<key>}}.
For example, if your key is api-token, reference it like this:
Use an environment variable in a cURL command
You can reference stored environment variables in cURL pre-requests. This is useful when a setup request needs a secret token. For example, you can run aDELETE request before a test starts to clean a user’s order history:

