v1

latestOpenAPI 3.0.0Superhuman Developer Terms2026-08-06124404444.0 KB
Packs

List the releases for a Pack.

Get the list of releases of a Pack.

get/packs/{packId}/releases

Path parameters

packIdinteger required

ID of a Pack

Query parameters

limitinteger

Maximum number of results to return in this query.

pageTokenstring

An opaque token used to fetch the next page of results.

Response

List of Pack releases.

nextPageTokenstring

If specified, an opaque token used to fetch the next page of results.

nextPageLinkstring url

If specified, a link that can be used to fetch the next page of results.

Example response

{
  "items": [
    {
      "packId": 1003,
      "releaseNotes": "The first release.",
      "createdAt": "2018-04-11T00:18:57.946Z",
      "releaseId": 2,
      "packVersion": "1.0.3",
      "sdkVersion": "1.5.1"
    }
  ],
  "nextPageToken": "eyJsaW1pd",
  "nextPageLink": "https://docs.superhuman.com/apis/v1/packs/1/releases?pageToken=xyz"
}