Last updated
Was this helpful?
Was this helpful?
{
"text": "TEXT_TO_ANALYZE"
}{
// intent can also be null if no intent is found
"intent": {
"name": "NAME_OF_INTENT",
"confidence": 0.84
},
"alternative_intents": [
// ... other matching intents
],
"entities": {
"someEntity": [
{
"value": "somevalue",
"metadata": {
// ... any additional information about entity
},
},
// ... other values for the same entity
],
// ... other entities
}
// ... any additional data: sentiment analyzis, language...
}