Get All Categories
This endpoint retrieves all categories.
info
This operation requires authentication only if content_availability community option is false.
info
To filter the category list by a tag id please refer to Get Categories tagged with a Specific Tag
HTTP Request
GET /api/v2/category/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| limit | query | integer | false | Number of results to return per page | 
| offset | query | integer | false | The initial index from which to return the results | 
| search | query | string | false | A search term | 
| can_create_content | query | string | false | Search category where the current user can (value: true) or cannot (value: false) create a content; the default value is '' and didn't check if the user can or cannot create a content in the category | 
| active | query | string | false | Filter using field active (only if user is administrator) | 
| deleted | query | string | false | Filter using field deleted (only if user is administrator) | 
Example Request
- JavaScript
- Bash
const headers = {
  'Accept':'application/json',
  'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/category/',
{
  method: 'GET',
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X GET /api/v2/category/ \
  -H 'Accept: application/json'
  -H 'Authorization: Bearer {access_token}'
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 200 | OK | Response status code | Inline | 
Response Schema
Status Code 200
| Name | Type | Required | Restrictions | Description | 
|---|---|---|---|---|
| » count | integer | false | none | Total results count | 
| » next | string(uri)¦null | false | none | Next page url | 
| » previous | string(uri)¦null | false | none | Previous page url | 
| » results | list(Category) | false | none | List of results |