Get All Settings
GET
/settings/all/
const url = 'https://example.com/api/settings/all/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/settings/all/ \ --header 'Authorization: Bearer <token>'Return all settings grouped by tab with source indicators (admin only).
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
SettingsAllResponse
Response for GET /settings/all/.
object
env_only
required
Env Only
Whether the instance is in env-only mode (settings are read-only and managed via environment variables).
boolean
tabs
required
Tabs
Settings grouped by admin UI tab (general, auth, ai, etc.).
object
key
additional properties
Array<object>
SettingItemA single setting in the unified response.
object
key
required
Key
Setting key (e.g. ‘login_rate_limit’, ‘basemaps’).
string
value
required
Value
Current value. Type depends on the setting.
source
required
Source
Where the value came from: ‘default’ (built-in default), ‘overridden’ (admin set via UI), or ‘env_only’ (configured via environment variable, read-only).
string
label
required
Label
Human-readable label for display in the admin UI.
string
Example generated
{ "env_only": true, "tabs": { "additionalProperty": [ { "key": "example", "value": "example", "source": "example", "label": "example" } ] }}