| title | Get all categories from Marble API |
|---|---|
| description | Retrieve all content categories from your Marble CMS workspace with pagination. Each category includes name, slug, description, and post count for taxonomy management. |
fetch("https://api.marblecms.com/v1/cm6ytuq9x0000i803v0isidst/categories")
.then((res) => res.json())
.then((json) => console.log(json))
.catch((err) => console.error("error:" + err));