Skip to main content

Get a Specific Reaction

This endpoint retrieves a specific reaction.

info

This operation does not require authentication.

HTTP Request

GET /api/v2/reaction/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this reaction

Example Request

const headers = {
'Accept':'application/json'
};

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

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeReaction

Example responses

{
"id": "integer",
"label": "string",
"sentiment": "integer",
"image": "string(uri)",
"active": "boolean"
}