Skip to content

Get a Version

A guide on how to query a changelog from the Chxngelog API.

Endpoint

Get a Single Version
GET https://api.chxngelog.com/get-a-version?versionId=YOUR_VERSION_ID

Query Parameters

  • versionId (required): The unique identifier of the version you are querying
  • draft (optional): Include drafts in the response. Default is false

Example Response

Response
{
"versionId": 1,
"name": "Version One",
"versionNo": "v1.0",
"releaseDate": "10-10-23",
"changes": [
{
"id": 1,
"description": "A change",
"type": "ADDED"
}
]
}