Get Category's Audience
This endpoint returns the audience of a specific category.
info
This operation requires authentication only if content_availability community option is false.
HTTP Request
GET /api/v2/category/{id}/audience/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this category | 
Example Request
- JavaScript
- Bash
const headers = {
  'Accept':'application/json',
  'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/category/{id}/audience/',
{
  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/{id}/audience/ \
  -H 'Accept: application/json'
  -H 'Authorization: Bearer {access_token}'
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 200 | OK | Response status code | Category | 
Example responses
- 200
{
  "category_audience": "integer",
  "connections_audience": "integer"
}