Skip to content
getgeolens.com

Get All Settings

GET
/settings/all/
curl --request GET \
--url https://example.com/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
label
required
Label

Human-readable label for display in the admin UI.

string
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
value
required
Value

Current value. Type depends on the setting.

Example generated
{
"env_only": true,
"tabs": {
"additionalProperty": [
{
"key": "example",
"label": "example",
"source": "example",
"value": "example"
}
]
}
}

Bad request — invalid query parameters or payload

ProblemDetail
object
detail
required
Detail
string
status
required
Status
integer
title
required
Title
string
type
Type
string
default: about:blank
Example
{
"type": "about:blank"
}

Unauthorized — missing or invalid credentials

ProblemDetail
object
detail
required
Detail
string
status
required
Status
integer
title
required
Title
string
type
Type
string
default: about:blank
Example
{
"type": "about:blank"
}

Forbidden — caller lacks access to this resource

ProblemDetail
object
detail
required
Detail
string
status
required
Status
integer
title
required
Title
string
type
Type
string
default: about:blank
Example
{
"type": "about:blank"
}

Not found

ProblemDetail
object
detail
required
Detail
string
status
required
Status
integer
title
required
Title
string
type
Type
string
default: about:blank
Example
{
"type": "about:blank"
}

Validation error

ProblemDetail
object
detail
required
Detail
string
status
required
Status
integer
title
required
Title
string
type
Type
string
default: about:blank
Example
{
"type": "about:blank"
}

Internal server error

ProblemDetail
object
detail
required
Detail
string
status
required
Status
integer
title
required
Title
string
type
Type
string
default: about:blank
Example
{
"type": "about:blank"
}