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

# getNoteSystemTemplates

> Get system note templates. You can use these templates when creating note files.

```ts theme={null}
static getNoteSystemTemplates(): Promise<Template[] | null | undefined>;
```

**Returns**

* `Template[]`: Template type. See [`Template`](/en/api-reference/supernote-plugin/types/template).

## Example

```ts wrap theme={null}
import { PluginCommAPI } from 'sn-plugin-lib';

/**
 * Example: get system note templates.
 */
export async function exampleGetNoteSystemTemplates() {
 const templates = await PluginCommAPI.getNoteSystemTemplates();
 return templates ?? [];
}
```
