# List workspace tags Returns the live conversation tags available in the workspace tag catalog. These are the canonical tags that power conversation payloads, filters, and tag mutation endpoints. Endpoint: GET /v2/tags Version: 2026-01-01.nova Security: bearerAuth ## Header parameters: - `Featurebase-Version` (string) API version for this request. Defaults to your organization's configured API version if not specified. Example: "2026-01-01.nova" ## Response 200 fields (application/json): - `object` (string, required) String representing the object type Enum: "list" - `data` (array, required) Array containing the actual response elements Example: [] - `data.type` (string, required) Object type identifier for a tag Enum: "tag" - `data.id` (string, required) Unique tag identifier Example: "67ec1234abcd5678ef901234" - `data.name` (string, required) Current tag name Example: "Churn" - `nextCursor` (string,null, required) Cursor to use for fetching the next page. Null if there are no more results. Example: "eyJpZCI6IjUwN2YxZjc3YmNmODZjZDc5OTQzOTAxMSJ9" ## Response 401 fields (application/json): - `error` (object, required) - `error.type` (string, required) The type of error returned Enum: "authentication_error" - `error.code` (string, required) Machine-readable error code Enum: "organization_required" - `error.message` (string, required) Human-readable error message Example: "An error occurred" - `error.param` (string) The parameter that caused the error (if applicable) Example: "id" - `error.status` (number, required) HTTP status code Enum: 401