GET /catalogs

List all available catalogs.

Returns a list of catalogs with their product counts and categories.

Responses

  • 200 application/json

    Successful Response

    Hide response attribute Show response attribute object
    • catalogs array[object] Required

      Full catalog details.

      Hide catalogs attributes Show catalogs attributes object
      • id string Required
      • slug string Required
      • name string Required
      • description string | null
      • productCount integer Required

        Total number of products

      • categories array[object]

        Category with product count.

        Hide categories attributes Show categories attributes object
        • id string Required
        • name string Required
        • productCount integer Required

          Number of products in this category

      • lastUpdated string(date-time) Required
GET /catalogs
curl \
 --request GET 'http://api.example.com/catalogs'
Response examples (200)
{
  "catalogs": [
    {
      "id": "string",
      "slug": "string",
      "name": "string",
      "description": "string",
      "productCount": 42,
      "categories": [
        {
          "id": "string",
          "name": "string",
          "productCount": 42
        }
      ],
      "lastUpdated": "2026-05-04T09:42:00Z"
    }
  ]
}