Skip to content
getgeolens.com

Get All Settings

GET
/settings/all/
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).

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>
SettingItem

A 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"
}
]
}
}