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

# Get Templates

> This endpoint gets templates.

### Body

<ParamField body="id" type="string">
  This is the id of the templates.
</ParamField>

### Response

<ResponseField name="id" type="number">
  This is the id of the templates.
</ResponseField>

<ResponseField name="name" type="string">
  This is the name of the templates.
</ResponseField>

<ResponseField name="description" type="string">
  This is the description of the templates.
</ResponseField>

<ResponseField name="created_at" type="string">
  This is the created\_at of the templates.
</ResponseField>

<ResponseField name="updated_at" type="string">
  This is the updated\_at of the templates.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --location --request GET 'https://api.stateset.com/v1/templates' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Token <token>' \
  --data-raw '{
      "id": 1
  }'
  ```
</RequestExample>
