Get the documents 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

Get the documents of a collection

Path parameters

  • collectionId string Required

    The id of the collection

Query parameters

  • page integer | null

    The page number in a paginated set of results

  • limit integer | null

    The limit of results to be returned per page

  • title[eq] string

    Search Document with a specific title

  • title[contains] string

    Search Documents that contains this in the title

  • type[eq] string

    Search Document with a specific type

    Values are Link or Page.

  • type[in] array[string]

    Search Document which have the following types

    Values are Link or Page.

  • status[eq] string

    Search Document with a specific status

    Values are Draft or Published.

  • status[in] array[string]

    Search Document which have the following statuses

    Values are Draft or Published.

Responses

  • 200 application/json

    Documents returned successfully

    Hide response attributes Show response attributes object
    • items array[object] Required

      The items found

      Hide items attributes Show items 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.

    • total integer Required

      The total number of items found

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Collection not found

GET /v1/collections/{collectionId}/documents
curl \
 --request GET 'https://openapi.meltingspot.io/v1/collections/{collectionId}/documents'
Response examples (200)
{
  "items": [
    {
      "id": "string",
      "title": "string",
      "type": "Link",
      "status": "Draft"
    }
  ],
  "total": 42
}