---
title: "List Global Variables Endpoint"
method: GET
path: "/workflows/v1/global-variables"
tags: ["Global Variables"]
---

# List Global Variables Endpoint

`GET /workflows/v1/global-variables`

List all global variables for the team. Secret values are masked.

## Query parameters

- `category` string, nullable — Filter by category
- `search` string, nullable — Search by variable name
- `page` integer
- `size` integer

## Response `200`

Successful Response

- GlobalVariablesListResponse
  - `variables` GlobalVariablesModel[], required
    - `team_id` string, nullable — ID of the team that owns this edge
    - `created_by` string, nullable — ID of the user who created this edge
    - `updated_by` string, nullable — ID of the user who last updated this edge
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `_id` string
    - `name` string, required — Unique variable name per team (valid identifier: alphanumeric + underscore)
    - `value` string — Variable value — supports large text (e.g. long system prompts, JSON configs)
    - `description` string, nullable — Human-readable description of the variable's purpose
    - `category` string, nullable — Grouping label (e.g. 'Prompts', 'Config', 'Credentials')
    - `is_secret` boolean — If True, the value is masked in list responses
  - `total` integer, required
  - `categories` unknown[]
    - unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/interactly/apis/interactly-api-3.md) · [All operations](https://skmtc.dev/interactly/apis/interactly-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/interactly/interactly-api-3/revisions/56acbffb4fcf/schema)
