# Retrieve platform settings

`GET https://api.cademi.com.br/api/v3/settings/platform`

Operation ID: `settings.platform.get` · API v3

Returns the platform settings of the account, such as language, title, showcase layout, dark mode, font size, sidebar visibility, and footer options.

The `defaults` object contains the default values, which lets you distinguish configured values from defaults. The `revision` field identifies the current revision of the settings.

The response includes an `ETag` representing the current revision. Send this value in the `If-Match` header when updating these settings to avoid overwriting a newer version.

Required permissions: `settings.read`.

## Responses

### 200

Returns the platform settings.

Body: `data`: SettingsPlatform.

Fields of SettingsPlatform:

| Field | Type | Required | Description |
|---|---|---|---|
| `dark_mode` | boolean | yes |  |
| `defaults` | object | yes |  |
| `font_size` | string, one of `padrao`, `ampliado` | yes |  |
| `footer` | object | yes |  |
| `language` | string | yes |  |
| `object` | string, one of `settings` | yes |  |
| `propagation` | object | yes |  |
| `replica` | object | yes |  |
| `revision` | string | yes |  |
| `showcase_layout` | string, one of `default`, `netflix` | yes |  |
| `sidebar_hidden` | boolean | yes |  |
| `title` | string | yes |  |

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
