---
title: "List technology templates"
method: GET
path: "/template"
tags: ["Technology template"]
---

# List technology templates

`GET /template`

List all technology templates available in your organization.

## Query parameters

- `offset` integer
- `limit` integer
- `target_nrn` string
- `status` 'active' | 'inactive'

## Response `200`

The operation was successful.

- TechnologyTemplateListResponse
  - `paging` object, required
    - `total` integer, required — The total number of results matching the query.
    - `offset` integer, required — The starting point for pagination. Defaults to 0 if not provided.
    - `limit` integer, required — The maximum number of results to return per page. The maximum allowed value is 200.
  - `results` TechnologyTemplateResponse[], required
    - `id` integer — The ID of the template.
    - `name` string — The name of the technology template (e.g., node, java-spring, go, kotlin-ktor).
    - `url` string — The URL of the template in the repository.
    - `provider` object
      - `repository` string — The name of the repository within the provider. > For example, if the URL is `https://github.com/nullplatform/technology-templates-nextjs`, the repository name should be `technology-templates-nextjs`.
    - `components` TemplateComponent[] — The components of the template.
      - `type` string — The type of component (e.g., language, framework).
      - `id` string — The ID of the component (e.g., javascript, golang, java).
      - `version` string — The version of the component (e.g., 20.2, 1.18, 17).
    - `tags` string[] — Tags associated with the template (e.g., node, nextjs, frontend).
    - `updated_at` string, date-time, nullable — The ISO-8601 UTC timestamp of when the technology template was last updated.
    - `created_at` string, date-time — The ISO-8601 UTC timestamp of when the technology template was created.

## Other responses

- `4XX` — Client error responses due to invalid input or missing parameters.
- `5XX` — Server error responses indicating an issue on the API side.

---

[API](https://skmtc.dev/nullplatform/apis/nullplatform-api.md) · [All operations](https://skmtc.dev/nullplatform/apis/nullplatform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nullplatform/nullplatform-api/revisions/1c4ea154b159/schema)
