---
title: "Get Config"
method: GET
path: "/api/v1/config"
tags: ["Base"]
---

# Get Config

`GET /api/v1/config`

Retrieve application configuration settings.<br><br>Returns different configuration based on authentication status:<br>- Authenticated users: Full ConfigResponse with all settings<br>- Unauthenticated users: PublicConfigResponse with limited, safe-to-expose settings<br><br>Args:<br>    user: The authenticated user, or None if unauthenticated.<br><br>Returns:<br>    ConfigResponse | PublicConfigResponse: Configuration settings appropriate for the user's auth status.<br><br>Raises:<br>    HTTPException: If an error occurs while retrieving the configuration.

## Response `200`

Successful Response

- union
  - ConfigResponse — Full configuration response for authenticated users. The 'type' field is a discriminator to distinguish from PublicConfigResponse.
    - `allow_custom_components` boolean, required
    - `authz_enabled` boolean
    - `auto_saving` boolean, required
    - `auto_saving_interval` integer, required
    - `custom_component_admin_only` boolean, required
    - `default_folder_name` string, required
    - `embedded_mode` boolean, required
    - `enable_extension_reload` boolean, required
    - `event_delivery` 'polling' | 'streaming' | 'direct', required
    - `feature_flags` FeatureFlags, required
      - `mvp_components` boolean
      - `wxo_deployments` boolean
    - `frontend_timeout` integer, required
    - `health_check_max_retries` integer, required
    - `hide_getting_started_progress` boolean, required
    - `hide_logout_button` boolean, required
    - `hide_new_flow_button` boolean, required
    - `hide_new_project_button` boolean, required
    - `hide_starter_projects` boolean, required
    - `max_file_size_upload` integer, required
    - `mcp_base_url` string, required
    - `mcp_servers_locked` boolean, required
    - `public_flow_cleanup_interval` integer, required
    - `public_flow_expiration` integer, required
    - `serialization_max_items_length` integer, required
    - `serialization_max_text_length` integer, required
    - `type` 'full'
    - `voice_mode_available` boolean, required
    - `webhook_auth_enable` boolean, required
    - `webhook_polling_interval` integer, required
  - PublicConfigResponse — Configuration response for public/unauthenticated endpoints like the public playground. Contains only the configuration values needed for public features, without sensitive data. The 'type' field is a discriminator to distinguish from full ConfigResponse.
    - `allow_custom_components` boolean, required
    - `authz_enabled` boolean
    - `enable_extension_reload` boolean, required
    - `event_delivery` 'polling' | 'streaming' | 'direct', required
    - `feature_flags` FeatureFlags, required
      - `mvp_components` boolean
      - `wxo_deployments` boolean
    - `frontend_timeout` integer, required
    - `max_file_size_upload` integer, required
    - `mcp_base_url` string, required
    - `type` 'public'
    - `voice_mode_available` boolean, required

## Changes

- **2026-06-08** `a5c4fa6a88f7` — 11 info
  - added the optional property `anyOf[subschema #1: ConfigResponse]/authz_enabled` to the response with the `200` status
  - added the optional property `anyOf[subschema #2: PublicConfigResponse]/authz_enabled` to the response with the `200` status
  - added the required property `anyOf[subschema #1: ConfigResponse]/custom_component_admin_only` to the response with the `200` status
  - added the required property `anyOf[subschema #1: ConfigResponse]/embedded_mode` to the response with the `200` status
  - …7 more
- **2026-04-13** `acd160326a88` — 6 info
  - added the optional property `anyOf[subschema #1: ConfigResponse]/feature_flags/wxo_deployments` to the response with the `200` status
  - added the required property `anyOf[subschema #1: ConfigResponse]/allow_custom_components` to the response with the `200` status
  - added the required property `anyOf[subschema #1: ConfigResponse]/mcp_base_url` to the response with the `200` status
  - added the required property `anyOf[subschema #2: PublicConfigResponse]/allow_custom_components` to the response with the `200` status
  - …2 more
- …earlier changes not shown

[Full history](https://skmtc.dev/langflow-ai/apis/langflow/changes/api/v1/config/get.md)

---

[API](https://skmtc.dev/langflow-ai/apis/langflow.md) · [All operations](https://skmtc.dev/langflow-ai/apis/langflow/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/langflow-ai/langflow/revisions/a5c4fa6a88f7/schema)
