get https://api.clustaar.io/bots//stats/intents_matches
Get for each intent the matches statistics for a given period
Response
Attribute | Type | Description |
---|---|---|
data[].type | string | always "intent_match_stats" |
data[].intentID | string | the intent id |
data[].intentName | string | the intent name |
data[].matchesCount | int | the number of matches |
data[].matchesPercent | float | the matches percent |
{
"data": [
{
"type": "intent_match_stats",
"intentID": "a2a2a2a2a2a2a2a2a2a2a2a2",
"intentName": "intent_stat_test",
"matchesCount": 17,
"matchesPercent": 0.298245614
},
{
"type": "intent_match_stats",
"intentID": "b1b1b1b1b1b1b1b1b1b1b1b1",
"intentName": "intent_stat_test",
"matchesCount": 25,
"matchesPercent": 0.4385964912
},
]
}