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

# Get Config

`GET /api/v1/config`

Retrieve application configuration settings.

Returns different configuration based on authentication status:
- Authenticated users: Full ConfigResponse with all settings
- Unauthenticated users: PublicConfigResponse with limited, safe-to-expose settings

Args:
    user: The authenticated user, or None if unauthenticated.

Returns:
    ConfigResponse | PublicConfigResponse: Configuration settings appropriate for the user's auth status.

Raises:
    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.
    - `a2a_enabled` boolean
    - `agentic_experience` boolean
    - `allow_custom_components` boolean, required
    - `assistant_max_message_length` integer
    - `authz_enabled` boolean
    - `auto_saving` boolean, required
    - `auto_saving_interval` integer, required
    - `blocked_component_types` string[]
    - `catalog_governance_enabled` boolean
    - `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
    - `local_vector_store_available` boolean
    - `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
    - `substitute_outdated_component_code` boolean, 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
    - `catalog_governance_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
    - `substitute_outdated_component_code` boolean, required
    - `type` 'public'
    - `voice_mode_available` boolean, required

## Changes

- **2026-09-01** `088c1fc24528` — 8 info
  - added the optional property `anyOf[subschema #1: ConfigResponse]/agentic_experience` to the response with the `200` status
  - added the optional property `anyOf[subschema #1: ConfigResponse]/assistant_max_message_length` to the response with the `200` status
  - added the optional property `anyOf[subschema #1: ConfigResponse]/blocked_component_types` to the response with the `200` status
  - added the optional property `anyOf[subschema #1: ConfigResponse]/catalog_governance_enabled` to the response with the `200` status
  - …4 more
- **2026-07-21** `22962dc5e81b` — 1 info
  - added the optional property `anyOf[subschema #1: ConfigResponse]/a2a_enabled` to the response with the `200` status
- **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
- …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/088c1fc24528/schema)
