Example Post Request with Expected Data
example required | integer (Example) |
another_example required | string (Another Example) |
{- "example": 0,
- "another_example": "string"
}
{- "example": 0,
- "another_example": "string"
}
Get a Gensim gensim.most_similar
response
positive | Array of strings (Positive) Default: [] |
negative | Array of strings (Negative) Default: [] |
topn | integer (Topn) Default: 10 |
{- "positive": [ ],
- "negative": [ ],
- "topn": 10
}
null
Get a SentimentIntensityAnalyzer
polarity_scores response
required | Text (string) or Array of Text (strings) (Text) |
{- "text": "string"
}
[- {
- "neg": 0,
- "neu": 0,
- "pos": 0,
- "compound": 0
}
]