Skip to main content
GET
/
v1
/
group
/
view
/
{group_key}
View Credential Group
curl --request GET \
  --url https://api.thehyperstack.com/v1/group/view/{group_key}
{
  "success": true,
  "title": "Course Completion Certificate",
  "description": "Awarded upon successful completion of the course.",
  "tags": "apple,mango,orange",
  "group_code": "CERT-2024",
  "url": "https://acme.com/course",
  "does_expire": true,
  "validity": 1
}

Documentation Index

Fetch the complete documentation index at: https://thehyperstack.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Description

This endpoint allows you to view an existing credential group in Hyperstack. The group key is passed as a URL path parameter.

Headers

Authorization
string
required
Bearer YOUR_API_TOKEN — obtainable from Hyperstack Dashboard → Settings → API Access

Path Parameters

group_key
string
required
Unique key of the credential group to retrieve.

Success Response Fields

success
boolean
Indicates whether the request was successful. Always true for a 200 response.
title
string
The title of the credential group.
description
string
Description of the credential group.
tags
string
Comma-separated tags associated with the credential group.
group_code
string
Human-readable code for the group.
url
string
External URL associated with the credential group.
does_expire
boolean
Indicates whether credentials in this group expire.
validity
number
Validity period in years. Only present when does_expire is true.

Responses

{
  "success": true,
  "title": "Course Completion Certificate",
  "description": "Awarded upon successful completion of the course.",
  "tags": "apple,mango,orange",
  "group_code": "CERT-2024",
  "url": "https://acme.com/course",
  "does_expire": true,
  "validity": 1
}
curl -X GET "https://api.thehyperstack.com/v1/group/view/SBXCmfk47u5y" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
Last modified on February 22, 2026