Show more

Use to navigate results, ENTER to select one, ESC to close

Type in any word to easily find the endpoint, property or group of operations you are looking for.

Bump.sh APIs hub
  • Bump.sh Portal
  • Bump.sh Workspace
Back to hub page
API Explorer API changelog
Download source
  • JSON OpenAPI specification
  • YAML OpenAPI specification
Bump.sh Portal logo

Topics

  • Introduction

Endpoints

  • Fetch
    • Retrieve full content of documentation pages GET
  • List
    • List child pages GET
  • Search
    • Search across all documentation pages in the portal by keyword GET
Powered by Bump.sh
Bump.sh APIs hub
  • Bump.sh Portal
  • Bump.sh Workspace
Back to hub page
API Explorer API changelog
Download source
  • JSON OpenAPI specification
  • YAML OpenAPI specification
Bump.sh Portal logo

Search across all documentation pages in the portal by keyword Run in API Explorer

Ask AI
  • Add to Cursor
  • Add to VSCode
  • Add to other AI tools (MCP)

  • Open in ChatGPT
  • Open in Claude

  • View as Markdown
  • Copy as Markdown

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 /search

Search across all documentation pages in the portal by keyword.

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

  • query string Required

    Search query string. Matches against page titles, content, and metadata.

  • url string

    Filter results by page. Useful to narrow down results of a specific documentation page.

  • type string

    Filter results by object type. Useful to narrow down results when looking for a specific kind of documentation page.

    Values are hub, api, guide, group, operation, request, response, model, message, binding, or property.

Responses

  • 200 application/json

    Returns matching pages with their URL, title, type, and a text excerpt. Use this to find specific endpoints, or topics when the user asks about a particular feature or concept.

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes object
      • type string

        Values are hub, api, guide, group, operation, request, response, model, message, binding, or property.

      • url string

        Canonical URL of the page

      • title string
      • excerpt string

        Excerpt of the page matching the search query

    • metadata object
      Hide metadata attribute Show metadata attribute object
      • total integer Required

        Total number available results, ignoring filters.

GET /search
curl \
 --request GET 'https://bump.sh/api/portal/v1/search?query=string' \
 --header "Portal-Url: https://developers.bump.sh/doc/workspace/"
Response examples (200)
{
  "data": [
    {
      "type": "hub",
      "url": "string",
      "title": "string",
      "excerpt": "string"
    }
  ],
  "metadata": {
    "total": 42
  }
}