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

Getting Python Script(Output) to JSON file

I am running a python script and I am trying to extract a part of it and convert it to JSON file so that I can pass it to Google Visualization. I have included my python script and output and detailed info. What I am doing: I am trying to run this…
0
votes
1 answer

Alchemy sentiments text API json parse error

Hi I am making the call for alchemy sentiments API as given below: function getAnalysis(sentence) { $.ajax({ url:alchemy.baseUrl,//http://access.alchemyapi.com/calls/text/TextGetTextSentiment`enter code here` type:…
Sharad Biradar
  • 1,724
  • 15
  • 11
0
votes
1 answer

Why does my python script stop executing when I try to make my API call?

I am trying to run this script and just print out some contents of JSON object that I got through a call to the AlchemyAPi, but for some reason my program stalls after accepting a URL from the user. I forcefully close it using Ctrl-C, and this is…
rafafan2010
  • 1,559
  • 2
  • 14
  • 23
0
votes
2 answers

alchemyAPI for php not working

I am trying to use AlchemyAPI's php sdk. I am running the same example given on their Github page. But when I try to run the example, I get this error message- Warning: fclose() expects parameter 1 to be resource, boolean given in…
user2510555
  • 967
  • 2
  • 8
  • 15
0
votes
1 answer

Syntax Error near unexpected token `(' in alchemyAPI python sdk

i installed alchemyAPI with python 2.7 on the desktop and it runs perfectly but when i saved the file to a live server whenever i try running the example files on aclemy i got the error. "Syntax Error near unexpected token `('" I checked the syntax…
Oliver Ven Quilnet
  • 461
  • 1
  • 4
  • 4
0
votes
1 answer

Class AlchemyAPI not found error

I need help guys, are you familiar with the alchemy api? It's an SEO tool that runs on different platforms and what it does is extract contents from web pages it uses the principle of content scraping. I downloaded the php SDK for alchemy api and I…
Oliver Ven Quilnet
  • 461
  • 1
  • 4
  • 4
0
votes
1 answer

EntityExtraction using AlchmenyAPI not returning any result

I am using the AlchemyAPI for EntityExtraction- http://access.alchemyapi.com/calls/text/TextGetRankedNamedEntities?outputMode=json&text=<--tweet-->&apikey=<--apikey--> I am encoding the text before passing it to the AlchemyAPI but in the json…
0
votes
2 answers

Name entity extraction and categorization in AlchemyAPI

I am testing AlchemyAPI for extracting the name of company from a given website. I am able to get the correct information in most of the cases. I also need to categorize the result into a business. What I get from AlchemyAPI is the most general…
mpvyas
  • 1
  • 1
0
votes
1 answer

AlchemyAPI get link for all entity

In Alchemy API, is it possible to get links for all entity even though they are not disambiguated. e.g. Country 0.33 2 britain
Noor
  • 19,638
  • 38
  • 136
  • 254
0
votes
1 answer

Alchemy API - TextGetCategory does not work for me

When I use the endpoint http://access.alchemyapi.com/calls/text/TextGetCategory and open CAS Visual Debugger and provide text as holiday locations in france or an url (http://www.guardian.co.uk/travel/france+beach) that is related to beaches in…
0
votes
1 answer

Unable to run AlchemyAPI examples

I installed AlchemyApi on my system and also obtained the Api key. But when I run the examples as mentioned in the README.txt file, I get the following errors:- AlchemyAPI_Java-0.8/testdir$java -jar ../dist/AlchemyAPI-Entity-Test.jar `Exception in…
user1882391
  • 53
  • 1
  • 5
0
votes
1 answer

Usage of AlchemyAPI setCustomParameters

I am trying Alchemy API for testing sentiment analysis. I am able to run basic examples, however I did not get where exactly setCustomParameters method is used. The full package name of this method…
Swamy
  • 771
  • 1
  • 8
  • 24
-1
votes
1 answer

Is there a javascript/Node.js library for accessing the Alchemy Data News API?

I've looked in the watson-developer-cloud package and its namesake namespace on GitHub. Will I need to go directly to the REST API in my app?
David Powell
  • 537
  • 1
  • 4
  • 16
-1
votes
1 answer

Uploading multiple images for image tagging in a single request to alchemyapi

I am trying to use Node.js with AlchemyAPI for image tagging. How can I upload or provide multiple URLs for multiple images in a single request so that the response contains the tags for all the images ? If I am adding multiple URLs it gives …
Aakash Mangal
  • 125
  • 3
  • 12
-1
votes
2 answers

Emptying lists per loop iteration in python?

I'm trying to loop through multiple articles on Reddit, go through each article and extract the top relevant entity (done by filtering for highest relevancy score), and then add that to the master_locations list: from __future__ import…
1 2 3
11
12