List all available catalogs.
Returns a list of catalogs with their product counts and categories.
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"
}
]
}