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

# Get Public Config

> Return public configuration (no auth required).



## OpenAPI

````yaml /api-reference/openapi.json get /api/config
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/config:
    get:
      tags:
        - config
      summary: Get Public Config
      description: Return public configuration (no auth required).
      operationId: get_public_config_api_config_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````

## Related topics

- [Get chart data (public access)](/api-reference/chart-data/get-chart-data-public-access.md)
- [Get published dashboard by slug (public access)](/api-reference/dashboards/get-published-dashboard-by-slug-public-access.md)
- [Get Tool Configs](/api-reference/tools_config/get-tool-configs.md)
- [Configuration](/configuration.md)
- [BI and dashboards](/guides/bi.md)
