# Retrieve app settings

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

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

Returns the progressive web app (PWA) settings of the account: name, icon, theme color, Android app association, and screenshots.

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 app settings.

Body: `data`: SettingsApp.

Fields of SettingsApp:

| Field | Type | Required | Description |
|---|---|---|---|
| `android` | object or null | yes |  |
| `defaults` | object | yes |  |
| `icon` | SettingsAsset or null | yes |  |
| `name` | string | yes |  |
| `object` | string, one of `settings` | yes |  |
| `propagation` | object | yes |  |
| `replica` | object | yes |  |
| `revision` | string | yes |  |
| `screenshots` | array of SettingsAsset | yes |  |
| `theme_color` | 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
