curl --location --request GET 'https://www.pacekb.com/api/v2/versions?count={count}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
{
  "success": true,
  "data": [
    {
        "id": "<id>",
        "version": "1.15",
        "name": "AI Generated Summary, PaceKB Professional and more...",
        "release_timestamp": "2023-06-05T20:42:23.805Z",
        "active_version": true,
        "released_version": true,
        "changelog_features": [
            {
                "id": "<id>",
                "changelog_version": "<id>",
                "name": "AI Article Summary",
                "description": "Automatically show your readers a 3-4 sentence summary of your article",
                "image_url": "https://pacekb-bucket.s3.amazonaws.com/changelogs/1.15/v1.15-ai-summary.gif"
            }
        ]
    }
  ]
}

Response

success
boolean
Indicates whether the call was successful.
message
string
If there’s an error an accompanying error message will be visible
data
array
Array of all version objects including changelog
curl --location --request GET 'https://www.pacekb.com/api/v2/versions?count={count}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
{
  "success": true,
  "data": [
    {
        "id": "<id>",
        "version": "1.15",
        "name": "AI Generated Summary, PaceKB Professional and more...",
        "release_timestamp": "2023-06-05T20:42:23.805Z",
        "active_version": true,
        "released_version": true,
        "changelog_features": [
            {
                "id": "<id>",
                "changelog_version": "<id>",
                "name": "AI Article Summary",
                "description": "Automatically show your readers a 3-4 sentence summary of your article",
                "image_url": "https://pacekb-bucket.s3.amazonaws.com/changelogs/1.15/v1.15-ai-summary.gif"
            }
        ]
    }
  ]
}