Skip to main content
GET
/
api
/
changelog
Get Changelog
curl --request GET \
  --url https://api.example.com/api/changelog
{
  "owner": "<string>",
  "repo": "<string>",
  "entries": [
    {
      "html_url": "<string>",
      "id": 123,
      "name": "<string>",
      "tag_name": "<string>",
      "body": "",
      "draft": false,
      "prerelease": false,
      "published_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Query Parameters

limit
integer
default:10
Required range: 1 <= x <= 50

Response

Successful Response

Response model for changelog endpoint.

owner
string
required
repo
string
required
entries
ChangelogEntry · object[]