> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voyantcloud.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Workspace Settings

> Return branding, support, policy, analytics, localization, and tax settings for a workspace.

## Method

`GET` `/v1/workspaces/:id/settings`

## Path Parameters

<ParamField path="id" type="uuid" required>Workspace identifier (must match API key workspace).</ParamField>

## Headers

<ParamField header="Authorization" type="string">Bearer token with `workspaces:read` scope.</ParamField>

## Request Example

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.voyantcloud.com/v1/workspaces/ws_abc/settings" \
    -H "Authorization: Bearer $VOYANT_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const res = await fetch("https://api.voyantcloud.com/v1/workspaces/ws_abc/settings", {
    headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` },
  })
  const settings = await res.json()
  ```

  ```python Python theme={null}
  import os, requests

  resp = requests.get(
    "https://api.voyantcloud.com/v1/workspaces/ws_abc/settings",
    headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"},
  )
  data = resp.json()
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "branding": {
        "logo_light_asset_id": "asset_light",
        "logo_dark_asset_id": "asset_dark",
        "favicon_asset_id": "asset_favicon"
      },
      "support": {
        "phone": "+40 700 000 000",
        "email": "support@voyantcloud.com"
      },
      "policies": {
        "terms_url": "https://example.com/terms",
        "privacy_url": "https://example.com/privacy"
      },
      "analytics": {
        "gtm_id": "GTM-XXXXXXX"
      },
      "localization": {
        "default_catalog_language": "en",
        "default_ui_language": "en",
        "supported_languages": ["en", "ro"]
      },
      "taxes": {
        "prices_include_tax": false,
        "enable_unified_taxes": true,
        "enable_vat_validation": true,
        "default_tax_profile_id": "taxprof_123"
      }
    }
  }
  ```

  ```json 403 Forbidden theme={null}
  { "error": "Access denied", "code": "AUTH_403" }
  ```
</ResponseExample>

<Note>Use the returned settings to configure workspace-specific branding in your apps. Asset IDs reference files stored in the gallery API.</Note>
