Retrieve a documentation change Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://developers.bump.sh/doc/portal/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Bump.sh Portal MCP server": {
    "url": "https://developers.bump.sh/doc/portal/mcp"
  }
}

Close
GET /changes/fetch

Retrieve a single visible documentation change by its identifier.

Headers

  • Portal-Url string Required

    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/

Query parameters

  • id string(uuid) Required

    Unique identifier of the documentation change.

Responses

  • 200 application/json

    Returns a single visible documentation change for the MCP scope.

    Hide response attribute Show response attribute object
    • data object
      Hide data attributes Show data attributes object
      • id string(uuid) Required

        Unique identifier of the documentation change

      • title string Required

        Title of the change

      • url string Required

        Public URL of the change

      • description string

        Optional description of the change

      • content string Required

        Markdown representation of the diff

      • created_at string(date-time) Required

        Date when the change was created

  • 404

    The resource was not found

GET /changes/fetch
curl \
 --request GET 'https://bump.sh/api/portal/v1/changes/fetch?id=string' \
 --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"
  }
}