How to get TextGetTargetedSentiment using AlchemyAPI but I want to provide input as text (article) not URL.
This http://www.alchemyapi.com/api/sentiment/textc.html
provides a way to do this but it takes URL as parameter.
How to get TextGetTargetedSentiment using AlchemyAPI but I want to provide input as text (article) not URL.
This http://www.alchemyapi.com/api/sentiment/textc.html
provides a way to do this but it takes URL as parameter.
When you use the endpoint http://access.alchemyapi.com/calls/text/TextGetTargetedSentiment, the only required parameters are apikey and text. The URL parameter is optional and doesn't need to be included in the query string. If you are looking at longer blocks of text, it might work best to use one of the SDKs to help programmatically handle the text.
You can keep your full text in a file. In program read its contents into a string and then call API.