Get Articles by Category Slug.
cURL
curl --request GET \ --url https://api.octaviatech.app/cms/articles/getByCategorySlug/{slug} \ --header 'x-api-key: <api-key>'
{ "success": true, "statusCode": 200, "message": "OK", "data": { "items": [ { "id": "{{objectId}}", "slug": "droopy-nose", "categorySlug": "surgery" } ], "pagination": { "total": 1, "page": 1, "limit": 20, "totalPages": 1 } } }
"surgery"
1
20
OK
The response is of type any.
any
Was this page helpful?