API Reference
//
Analyze text
The method analyzes the input and detects problematic content, sentiment snippets, entities, topics, phrase structure, parts of speech, stopwords, and more.
Security
Tisane-API-Key
POST
- Hello Tisane
- Abuse detection
- Extract topics (native standard)
- Extract topics (IAB standard)
- Adverse media monitoring in fintech
- Parse alias w/ sentence structure
- Parse hashtag and output words
curl -i -X POST \
https://api.tisane.ai/parse \
-H 'Content-Type: application/json' \
-H 'Ocp-Apim-Subscription-Key: YOUR_API_KEY_HERE' \
-d '{
"language": "en",
"content": "Hello Tisane API!!"
}'Successful response
The state after the analysis. Can be used to set the state of the future analyses. (Set state to true to show.)
Response
- Hello Tisane
- Abuse detection
- Extract topics (native standard)
- Extract topics (IAB standard)
- Adverse media monitoring in fintech
- Parse alias w/ sentence structure
- Parse hashtag and output words
{ "text": "Hello Tisane API!", "entities_summary": [ { … } ] }