List all your product sets

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://api.documentation.omnicado.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "omnicado MCP server": {
    "url": "https://api.documentation.omnicado.com/mcp"
  }
}

Close
GET /product-sets

This endpoint is used to create product set under which you are able to list your products

Get all my product sets

Query parameters

  • page integer(int32)

    Which page of collection do you want to view

  • limit integer(int32)

    How many items to return at one time (max 100)

Responses

  • 200

    If product set is succesfully updated 200 status code is returned

  • 404

    Product set is not found

GET /product-sets
curl \
 --request GET 'api.services.omnicado.com/api/v2/product-sets' \
 --header "X-OMNICADO-TOKEN: $API_KEY"