- Query Parameters
- - 'search': string; Search string
- 'categories': int[], List of categories IDs,
- 'user_id': int,
- 'sort': string; sortable by 'created_at', 'release_date', 'total_downloads', 'title'. default 'created_at',
- 'dir': string; 'asc' or 'desc', default 'desc',
- 'per_page': int, between 1 and 100, default 30.
Get a list of news with specified criteria. 30 entries per page with a pagination system.
Need news:read scope, and all news need to be published.
Need news:read scope, and all news need to be published.
- Response
- data: [ ['id': int, 'category': Category, 'title': string], ... ]
Category schema can be found in the associated Category endpoints.