> For the complete documentation index, see [llms.txt](https://liquiidio.gitbook.io/unity-plugin-suite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://liquiidio.gitbook.io/unity-plugin-suite/atomicassets/examples/templatesexample.md).

# TemplatesExample

```csharp
public async Task TemplatesExample()
{
    // Get a template by collection and templateId
    var template = await AtomicAssetsApiFactory.Version1.TemplatesApi.Template("collectionName", "templateId");

    // Print diverse Data about the template
    Console.WriteLine(template.Data.Contract);
    Console.WriteLine(template.Data.CreatedAtBlock);
    Console.WriteLine(template.Data.CreatedAtTime);
    Console.WriteLine(template.Data.IsBurnable);
    Console.WriteLine(template.Data.IsTransferable);
    Console.WriteLine(template.Data.IssuedSupply);
    Console.WriteLine(template.Data.MaxSupply);
    Console.WriteLine(template.Data.TemplateId);
}
```
