Search code examples
strapi

How to get articles by category in Strapi CMS


http://localhost:1337/posts?_where[categories]=<catId>_sort=createdAt:DESC&_start=0&_limit=3

Used the above API pattern to filter posts by categories but it didn't work. Does anyone know how to get this work. Posts has and belongs to many Categories


Solution

  • It's not a big problem. Just go strapi cms panel choose articles in content manager and use filter button to filtering articles by category. When strapi do this check address bar in browser and copy last part with filter to your request. that's all.

    enter image description here