Get all blog categories
GET/blogs/categories
The "Get all blog categories" API returns the blog categories for a given location ID.
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Sub-account (location) identifier the category belongs to
limit numberrequired
Maximum number of categories to return (0-50)
offset numberrequired
Number of categories to skip before returning results
searchTerm string
Free-text search across category label and description
Successful response
- application/json
- Schema
- Example (auto)
Schema
categoriesobject[]required
Array of categories
countnumberrequired
Total number of categories matching the query, ignoring limit/offset
{
"categories": [
{
"_id": "66c381b38be80858b9af62b6",
"locationId": "ve9EPM428h8vShlRW1KT",
"label": "Marketing Tips",
"urlSlug": "marketing-tips"
}
],
"count": 42
}