List documentation changes Run in API Explorer
Ask AI
List visible documentation changes for a given resource.
Supported resource types are a Hub, an API documentation, a specific version.
Headers
-
A url of public portal:
- E.g. for a Documentation
https://developers.bump.sh - E.g. for a Hub
https://www.elastic.co/docs/api - E.g. for an Organization
https://apidocs.lastminute.com/
- E.g. for a Documentation
GET
/changes/list
curl \
--request GET 'https://bump.sh/api/portal/v1/changes/list' \
--header "Portal-Url: https://developers.bump.sh/doc/workspace/"
Response examples (200)
{
"data": [
{
"id": "f5b88339-01fa-4b6c-b45e-81d40b0ca94a",
"title": "API structure has changed",
"url": "https://developers.bump.sh/doc/workspace/changes/abc123",
"description": "Added a new endpoint to manage versions",
"content": "## Added\n- POST /versions\n\n## Modified\n- GET /versions",
"created_at": "2026-06-23T13:14:50.138Z"
}
],
"metadata": {
"total": 1,
"page": 1,
"limit": 20
}
}