Endpoints
Analyze text
Send content to a specified agent using their agent ID.
POST
Authorizations
Path Parameters
The ID of the agent to send feedback to.
Body
application/json
The text you'd like to analyze. Limit 1000 characters.
Maximum length:
1000
Example:
"I don't like your products"
Response
200 - application/json
Successful response
ID of the agent that performs the analysis.
Example:
"66683c760ea17e1c58a16649"
Name of the agent that performs the analysis.
Example:
"Sentiment"
Content sent for analysis.
Example:
"I don't like your products"
The label with the highest probability. This will always be the label with the highest score.
Example:
"negative"
The label score, ranging from 0 to 1, with 1 indicating a high probability of being correct.
Example:
0.98
An object that includes the scores for all labels.
Example:
{
"positive": 0,
"neutral": 0,
"negative": 0.98
}