---
title: "Retrieve Server Settings"
method: GET
path: "/api/v1/settings"
tags: ["Settings"]
---

# Retrieve Server Settings

`GET /api/v1/settings`

Returns the server's current in-memory settings view as the typed `ServerSettings` payload.

## Response `200`

Server settings

- ServerSettings — Current in-memory server settings view.
  - `server` ServerNamespace, required
    - `listen` union, required
      - ServerListenTcpSettings
        - `type` 'tcp', required
        - `address` string, required
      - ServerListenUnixSettings
        - `type` 'unix', required
        - `path` string, required
    - `api` ServerApiSettings, required
      - `url` string, nullable, required
    - `web` ServerWebSettings, required
      - `enabled` boolean, required
      - `url` string, required
    - `auth` ServerAuthSettings, required
      - `methods` ServerAuthMethod[], required
      - `github` ServerAuthGithubSettings, required
        - `allowed_usernames` string[], required
    - `sandbox` ServerSandboxSettings, required
      - `providers` ServerSandboxProvidersSettings, required
        - `local` ServerSandboxProviderSettings, required
          - `enabled` boolean, required
        - `docker` ServerSandboxProviderSettings, required
          - `enabled` boolean, required
        - `daytona` ServerSandboxProviderSettings, required
          - `enabled` boolean, required
    - `storage` ServerStorageSettings, required
      - `root` string, required
    - `artifacts` ServerArtifactsSettings, required
      - `prefix` string, required
      - `store` union, required
        - ObjectStoreLocalSettings
          - `type` 'local', required
          - `root` string, required
        - ObjectStoreS3Settings
          - `type` 's3', required
          - `bucket` string, required
          - `region` string, required
          - `endpoint` string, nullable, required
          - `path_style` boolean, required
    - `slatedb` ServerSlateDbSettings, required
      - `prefix` string, required
      - `store` union, required
        - ObjectStoreLocalSettings
          - `type` 'local', required
          - `root` string, required
        - ObjectStoreS3Settings
          - `type` 's3', required
          - `bucket` string, required
          - `region` string, required
          - `endpoint` string, nullable, required
          - `path_style` boolean, required
      - `flush_interval` string, required
      - `disk_cache` boolean, required
    - `scheduler` ServerSchedulerSettings, required
      - `max_concurrent_runs` integer, required
    - `logging` ServerLoggingSettings, required
      - `level` string, nullable, required
      - `destination` 'file' | 'stdout', required
    - `integrations` ServerIntegrationsSettings, required
      - `github` GithubIntegrationSettings, required
        - `enabled` boolean, required
        - `strategy` 'token' | 'app', required
        - `app_id` string, nullable, required
        - `client_id` string, nullable, required
        - `slug` string, nullable, required
        - `webhooks` IntegrationWebhooksSettings, required
          - `strategy` 'tailscale_funnel' | 'server_url', required
      - `slack` SlackIntegrationSettings, required
        - `enabled` boolean, required
        - `default_channel` string, nullable, required

---

[API](https://skmtc.net/fabro-sh/apis/fabro-run-api.md) · [All operations](https://skmtc.net/fabro-sh/apis/fabro-run-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fabro-sh/fabro-run-api/versions/bee030053823/schema)
