> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Saved AI Style

> Inspect your company's saved AI email appearance and revision

Read your saved style before [replacing](./save) or [clearing](./clear) it. Requires `emails:read`.

```bash theme={null}
curl https://api.sequenzy.com/api/v1/email-ai-style \
  -H "Authorization: Bearer YOUR_API_KEY"
```

The response includes `success`, `style`, `revisionId` and `canManage`. A style contains its `id`, `version`, source email ID/name, save timestamp, theme, font, layout preset and block appearance records. These records contain appearance, not source copy or links. Styles saved with layout habits also carry `layout.outline` (the source section order) and `layout.rules` (confirmed habits with stable IDs such as `around|button|divider:dots`), plus optional `notes`. Pass rule IDs to [save](./save) as `layoutRuleIds` to keep a subset.

With no saved style, `style` and `revisionId` are `null`. If a stored version is unsupported, `style` is `null` but `revisionId` still identifies it so you can replace or clear it. Do not treat that state as an initial save.

```json theme={null}
{ "success": true, "style": null, "revisionId": null, "canManage": true }
```

Use `sequenzy email-ai-style get --json` or MCP `get_email_ai_style`. Personal keys can select a company using `X-Company-Id`, CLI `--company`, or MCP `companyId`.

Errors: `401` for invalid/missing auth, `403` for missing scope or denied company access, and `404` if the selected company no longer exists. `canManage: false` means you can inspect this style but cannot change it.
