# List certification templates

URL: /en/docs/api/v1/certifications/templates/get
Last Updated: 2026-07-30T21:15:29.743Z

## Description
No description available.

## Available Actions
- Execute GET request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### GET /api/v1/certifications/templates

**List certification templates**

Retrieve a list of predefined certification templates that can be used to create new certifications.
Templates provide standardized certification types with pre-filled information.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Responses:**

- `200` - List of certification templates
  - `templates` (array of CertificationTemplate (object))
    - `id` (string, required): Template identifier
    - `name` (string, required): Template name
    - `description` (string): Template description
    - `category` (enum: security | compliance | privacy | quality | other, required): Certification category
    - `typical_validity_months` (integer): Typical validity period in months
- `401` - Unauthorized
  - `error` (string)
- `500` - Internal server error
  - `error` (string)

