Skip to main content

Get a Specific Incubator

This endpoint retrieves a specific incubator.

info

This operation requires authentication only if content_availability community option is false.

HTTP Request

GET /api/v2/incubator/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this incubator

Example Request

const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/incubator/{id}/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeIncubator

Example responses

{
"id": "integer",
"name": "string",
"slug": "string",
"slogan": "string",
"status": "integer",
"approved_category": {Category},
"added_at": "string",
"user": {
"id": "integer",
"username": "string",
"real_name": "string",
"avatar": "string",
"ext_id": "integer"
},
"subscribers_count": "integer",
"subscribers_threshold": "integer",
"subscribed": "boolean"
}