Questions tagged [alchemyapi]

AlchemyAPI is a SaaS platform that enriches textual content through automated tagging, categorization, linguistic analysis, and semantic mining. Available as both a free online API and commercial subscription service, AlchemyAPI is used by online publishers, news aggregators, and contextual advertising firms world-wide to understand and monetize online content.

AlchemyAPI provides content owners and web developers with a rich suite of content analysis and meta-data annotation tools.

Expose the semantic richness hidden in any content, using named entity extraction, keyword extraction, sentiment analysis, fact and relation extraction, document categorization, concept tagging, language detection, and structured content scraping. Use AlchemyAPI to enhance your website, blog, content management system, or semantic web application.

AlchemyAPI uses deep linguistic parsing, statistical natural language processing, and machine learning to analyze your content, extracting semantic meta-data: information about people, places, companies, topics, languages, and more.

Learn More

170 questions
0
votes
1 answer

Invalid Alchemy API key in Meteor app

I'm getting a response from Alchemy API's Sentiment Analysis that says I have an invalid API key. I'm using a basic HTTP GET request with the params encoded in a js object, like so: var params = { apiKey: kAlchemyApiKey, text: text, …
Gilles Major
  • 489
  • 1
  • 3
  • 12
0
votes
0 answers

Shows Progress Dialogbox when API request is being processed in CakePHP 2.x

$this->alchemyapi = new AlchemyAPI(); $response = $this->alchemyapi->sentiment("text", "Text to anaylse", null); I have the above code which made a request to AlchemyAPI and wait for the response ,in the action of my controller.My question is…
Zaw Htut
  • 1
  • 1
  • 4
0
votes
1 answer

what algorithms does AlchemyAPI use?

I'm trying to develop something that extract keywords from a text. I know AlchemyAPI work best for this. Now i wanna know what algorithms AlchemyAPI used so that i can implement code of it on my own. Does anyone has any idea about it. Please share…
patrick
  • 357
  • 6
  • 20
0
votes
1 answer

Is there way to influence AlchemyAPI sentiment analysis

I was using AlchemyAPI for text analysis. I want to know if there is way to influence the API results or fine-tune it as per the requirement. I was trying to analyse different call center conversations available on internet. To understand the…
Kaushik Lele
  • 6,439
  • 13
  • 50
  • 76
0
votes
1 answer

Explain how to use TextGetTargetedSentiment of AlechmyAPI

1) Please explain what is the functionality of TextGetTargetedSentiment. 2) Please provide Java code snippet calling TextGetTargetedSentiment. EDIT API info is at http://www.alchemyapi.com/api/sentiment/textc.html#targetedsentiment As answered by…
Kaushik Lele
  • 6,439
  • 13
  • 50
  • 76
0
votes
1 answer

Sample application using AlchemyAPI

I tried sample Java program to call each of below Alchemy API for a text file. TextGetRankedNamedEntities TextGetRankedConcepts TextGetRankedKeywords TextGetLanguage TextGetCategory TextGetTextSentiment TextGetTargetedSentiment …
Kaushik Lele
  • 6,439
  • 13
  • 50
  • 76
0
votes
1 answer

AlchemyAPI Sentiment and supporting keywords

In AlchemyAPI there are these two functions available TextGetTextSentimentand TextGetRankedKeywords. but TextGetTextSentiment gives only sentiments without keywords (which made API come to sentiment conclusion). And TextGetRankedKeywords does not…
Kaushik Lele
  • 6,439
  • 13
  • 50
  • 76
0
votes
1 answer

alchemy API doesnt accept my local file

Here is my request: > curl -i -H "Accept: application/json" -H "Content-Type: > application/json" -X GET >…
matthieu lieber
  • 662
  • 1
  • 17
  • 30
0
votes
1 answer

URL encoded string in Requests POST

I'm sure this is really banal and stupid but I cannot figure it out for the life of me. I'm working with the Alchemy API, where the POST request using Requests looks like r = requests.post(url, payload, headers=headers) where payload is a dict with…
AutomaticStatic
  • 1,661
  • 3
  • 21
  • 42
0
votes
2 answers

TextGetTargetedSentiment using AlchemyAPI for input as text, not URL

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.
SagarVimal
  • 259
  • 2
  • 5
  • 12
0
votes
1 answer

Post Request to alchemy API in iOS8

Im trying to use the API call TextGetRankedNamedEntities http://www.alchemyapi.com/api/entity/textc.html#rtext Here is my relevant code: NSString *data = @"Data I want analyzed"; NSArray *paths =…
Jim Gorski
  • 360
  • 1
  • 5
  • 16
0
votes
1 answer

How can I iterate through Alchemy CMS elements in Rails View?

I am trying to iterate over an element called vacation_date. However, I keep getting the error: undefined local variable or method `element' for #<#:0x007fa394a33948>

Vacation Dates

<%= render_elements :only =>…
user3245240
  • 265
  • 4
  • 10
0
votes
3 answers

Parsing a json string in Python

I'm new to parsing json strings for information. I used json.loads to analyse a block of text, but I'm having trouble figuring out how to get just the Titles. Here's the code: from alchemyapi import AlchemyAPI import json alchemyapi =…
0
votes
1 answer

how to use AlchemyAPI in c# Sentiment Analysis

I want to get Sentiment Analysis of text data using alchemyapi, for that I am trying following c# api. But I have problem which function should be call in my project to pass parameter and take JSON result in…
aemie
  • 161
  • 2
  • 13
0
votes
0 answers

Accessing Alchemy Rest API using Angular JS

I am trying to call the Alchemy REST API using Angular js. I am embedding the js in HTML and I have posted the code that I am using below.I am trying to display the JSON from the REST API on the HTML page, but I am not getting anything on the page…