Credential Templates

List credential templates

Use this endpoint to list credential templates (groups).

<Callout title="Naming update" type="warn"> Groups are being renamed to Credential Templates to better reflect their purpose. This is a **naming update only** — all functionality remains the same.

During the transition, you may still see both terms used interchangeably across the API, app, and existing integrations. </Callout>

get/v1/groups

Query parameters

cursorstring

Cursor for pagination

Cursor for pagination

limitinteger nullable

Number of items to return (default: 20)

Example:20

Number of items to return (default: 20)

Headers

Certifier-Versionstring required

API version header. Required for all requests.

Example:2022-10-26

API version header. Required for all requests.

Response

List of credential templates (groups)

Example response

{
  "data": [
    {
      "id": "01g90279gp5sbmfek7wymcsvec",
      "name": "Financial Markets",
      "learningEventUrl": "https://www.coursera.org/learn/financial-markets-global",
      "designIds": [
        "01fpwtztwf7sacca5r0c483mnm",
        "01hz2ej4yzdcfkq9fa78nhyj0x"
      ],
      "certificateDesignId": "01fpwtztwf7sacca5r0c483mnm",
      "badgeDesignId": "01hz2ej4yzdcfkq9fa78nhyj0x",
      "createdAt": "2022-01-01T00:00:00.000Z",
      "updatedAt": "2022-01-01T00:00:00.000Z"
    }
  ]
}

Changes