---
title: "Getting all public configuration"
method: GET
path: "/v1/config/public"
tags: ["System Configuration"]
---

# Getting all public configuration

`GET /v1/config/public`

_(introduced: version 2026.1)_

This endpoint will return all server configuration that is publicly accessible in a single object. This endpoint does not require authentication.

The following configurations are publicly accessible:

* `login-appearance`
* `logo`
* `hero-image`

The following configuration is not publicly accessible and requires authentication to access:

* `analytics`

For configuration that stores binary data (e.g., `logo`), this endpoint only returns metadata about the configuration (e.g., when the configuration was last set). To retrieve the binary data, you can use the corresponding endpoint described above (e.g., /v1/config/logo). If the configuration is publicly accessible, you can access the binary data without providing authentication via /v1/config/public/:key (e.g., /v1/config/public/logo).

## Response `200`

OK

- object — Details about all public configuration.
  - `login-appearance` ConfigLoginAppearance
    - `key` string, required — The type of system configuration.
    - `setAt` string, required — ISO date format. The last time this system configuration was set.
    - `value` ConfigLoginAppearanceValue, required
      - `title` string — A custom title to show on the login page.
      - `description` string — A custom description to show on the login page as a subtitle.
  - `logo` ConfigLogo
    - `key` string, required — The type of system configuration.
    - `setAt` string, required — ISO date format. The last time this system configuration was set.
    - `blobExists` boolean, required — Whether a file has been set for this configuration.
  - `hero-image` ConfigHeroImage
    - `key` string, required — The type of system configuration.
    - `setAt` string, required — ISO date format. The last time this system configuration was set.
    - `blobExists` boolean, required — Whether a file has been set for this configuration.

## Changes

- **2026-04-03** `2aed27d9e013` — 1 info
  - endpoint added
- **2025-03-13** `e8c2858fd4eb` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/getodk/apis/odk-central-api/changes/v1/config/public/get.md)

---

[API](https://skmtc.dev/getodk/apis/odk-central-api.md) · [All operations](https://skmtc.dev/getodk/apis/odk-central-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getodk/odk-central-api/revisions/d4f5ba77f644/schema)
