Cognis
Org

List Categories

GET
/org/{orgId}/blog/categories

Public API endpoint: orgBlog.listCategories

Required scopes: org:blog:read

Authorization

bearerAuth
AuthorizationBearer <token>

API key (prefix: cogn_) from Account → Developer

In: header

Path Parameters

orgId*string

Organization ID (prefix: org_)

Query Parameters

brandId?string
limit?integer
Range1 <= value <= 500
status?string
Value in"active" | "archived"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "http://localhost:3013/api/v1/org/string/blog/categories"
{
  "success": true,
  "data": [
    {
      "id": "601",
      "orgId": "1",
      "brandId": "10",
      "name": "Marketing",
      "slug": "marketing",
      "description": "All marketing-related posts.",
      "heroImageUrl": null,
      "heroImageAlt": null,
      "seoTitle": null,
      "seoDescription": null,
      "wpCategoryIdPerSite": {},
      "createdAt": "2025-01-01T19:42:28.687Z",
      "updatedAt": "2025-01-02T10:15:00.000Z",
      "status": "active"
    }
  ],
  "message": "Success",
  "traceId": "req_abc123"
}
{
  "success": false,
  "message": "Invalid data",
  "errors": [
    {
      "code": 400,
      "message": "Invalid data"
    }
  ],
  "traceId": "req_xxx"
}
{
  "success": false,
  "message": "Unauthorized",
  "errors": [
    {
      "code": 401,
      "message": "Unauthorized"
    }
  ],
  "traceId": "req_xxx"
}
{
  "success": false,
  "message": "Forbidden",
  "errors": [
    {
      "code": 403,
      "message": "Forbidden"
    }
  ],
  "traceId": "req_xxx"
}
{
  "success": false,
  "message": "Not found",
  "errors": [
    {
      "code": 404,
      "message": "Not found"
    }
  ],
  "traceId": "req_xxx"
}
{
  "success": false,
  "message": "Conflict",
  "errors": [
    {
      "code": 409,
      "message": "Conflict"
    }
  ],
  "traceId": "req_xxx"
}
{
  "success": false,
  "message": "string",
  "errors": [
    {
      "code": 0,
      "message": "string",
      "details": {}
    }
  ],
  "traceId": "string",
  "params": {},
  "readableMessage": "string"
}
{
  "success": false,
  "message": "Rate limit exceeded",
  "errors": [],
  "traceId": "req_xxx"
}
{
  "success": false,
  "message": "Unexpected error",
  "errors": [
    {
      "code": 500,
      "message": "Unexpected error"
    }
  ],
  "traceId": "req_xxx"
}