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

# Get config

Returns the currently loaded configuration summary, including model/provider and runtime settings like `maxSteps`.


## OpenAPI

````yaml /api-reference/openapi.local.json GET /config
openapi: 3.1.0
info:
  title: btca Local Server API
  version: 2.0.0
  description: Local HTTP API exposed by btca-server.
servers:
  - url: http://localhost:{port}
    variables:
      port:
        default: '8080'
security: []
paths:
  /config:
    get:
      summary: Get current config
      responses:
        '200':
          description: Config summary
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfigSummary'
components:
  schemas:
    ConfigSummary:
      type: object
      required:
        - provider
        - model
        - providerTimeoutMs
        - maxSteps
        - resourcesDirectory
        - resourceCount
      properties:
        provider:
          type: string
        model:
          type: string
        providerTimeoutMs:
          type: integer
        maxSteps:
          type: integer
        resourcesDirectory:
          type: string
        resourceCount:
          type: integer

````