---
title: "List Scorecard Templates"
method: GET
path: "/v1/scorecard-templates"
tags: ["Scorecards"]
---

# List Scorecard Templates

`GET /v1/scorecard-templates`

Returns a paginated collection of scorecard templates.

## Query parameters

- `page[size]` integer
- `page[number]` integer
- `filter` ScorecardTemplateFilterParameters
  - `name` StringFieldFilter — Filter using **one** of the following operators: `eq`, `oeq`, `neq`, `contains`, `ocontains`
    - `eq` string — The field exactly matches the provided value.
    - `contains` string — The field contains the provided value.
    - `ocontains` string — The field contains any of the provided values.
    - `oeq` string — The field matches any of the provided values.
    - `neq` string — The field does not match the provided value.
  - `display_name` StringFieldFilter — Filter using **one** of the following operators: `eq`, `oeq`, `neq`, `contains`, `ocontains`
    - `eq` string — The field exactly matches the provided value.
    - `contains` string — The field contains the provided value.
    - `ocontains` string — The field contains any of the provided values.
    - `oeq` string — The field matches any of the provided values.
    - `neq` string — The field does not match the provided value.
- `sort` string — The `asc` suffix is optional as the default sort order is ascending. The `desc` suffix is used to specify a descending order. Multiple sort attributes may be provided via a comma separated list. JSONPath notation may be used to specify a sub-attribute (eg: 'foo.bar desc').

## Response `200`

A paginated list response for a collection of scorecard templates.

- object
  - `meta` PaginatedMeta, required — returns the pagination information
    - `page` PageMeta, required — Contains pagination query parameters and the total number of objects returned.
      - `number` number, required
      - `size` number, required
      - `total` number, required
  - `data` ScorecardTemplate[], required
    - `name` 'kong_best_practices' | 'service_documentation' | 'service_maturity' | 'security_and_compliance', required — Well-known name of the template. Uniquely identifies the template.
    - `display_name` string, required
    - `description` string, required
    - `criteria` ScorecardTemplateCriteria[], required
      - `integration` string, nullable, required — The integration `name` when it provides the criteria template. Otherwise `null`.
      - `template_name` string, required — Reference to the unique `name` of the criteria template.
      - `template_parameters` CriteriaParameters, nullable, required — Input parameters for the given criteria template. The available parameters, and its schema, are found on the criteria template definition via the `schema` property. Criteria template definitions are determined by the `/v1/criteria-templates` endpoint.
      - `section_name` string, nullable, required — Organizational section that the criteria belongs to within the scorecard template.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.net/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.net/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/versions/0261aef4b1e2/schema)
