Get a document of a collection

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://help-api.meltingspot.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "API MCP server": {
    "url": "https://help-api.meltingspot.io/mcp"
  }
}

Close
GET /v1/collections/{collectionId}/documents/{documentId}

Get a document of a collection, with its content rendered as Markdown for a Page document

Path parameters

  • collectionId string Required

    The id of the collection

  • documentId string Required

    The id of the document

Responses

  • 200 application/json

    Document found and returned successfully

    Hide response attributes Show response attributes object
    • id string Required

      The id of the document.

    • title string Required

      The title of the document.

    • type string Required

      The type of the document.

      Values are Link or Page.

    • status string Required

      The status of the document.

      Values are Draft or Published.

    • description string Required

      The description of the document. Empty string when unset.

    • content string | null Required

      The Markdown content of a Page document. Null for a Link document, empty string when the page has no content.

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Document not found

GET /v1/collections/{collectionId}/documents/{documentId}
curl \
 --request GET 'https://openapi.meltingspot.io/v1/collections/{collectionId}/documents/{documentId}'
Response examples (200)
{
  "id": "string",
  "title": "string",
  "type": "Link",
  "status": "Draft",
  "description": "string",
  "link": "string",
  "content": "string"
}