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

164 questions
9
votes
3 answers

Where can I find a text list or library that contains a list of common foods?

I'm writing a Python script that parses emails which involves searching the text of the email for any words that are common food items. I need some way to determine whether words are indeed food items. I've looked at several natural language…
abergal
  • 101
  • 1
  • 2
7
votes
2 answers

HTML article content extraction - Alchemy API alternative

I've been doing a lot of research to figure out the best way to code an application to get the main article content from almost any HTML webpage. I have a C program that uses libxml2 to parse through the XML, but I came across Alchemy API, which…
Manoj Solanki
  • 96
  • 1
  • 6
7
votes
2 answers

How to URI-Encode image?

I am reading through the alchemy-API documentation here: http://www.alchemyapi.com/api/image-tagging/image.html They say that the image must be URI-encoded... what exactly does that mean? Does it mean converting the image to a base64 string and…
snowflakekiller
  • 2,719
  • 2
  • 21
  • 39
6
votes
1 answer

Named Entity Extraction - for Currency

I have a pretty simple problem - recognize money/currency in text. Sample test case: "Pocket money should NOT exceed INR 4000 (USD 100) per annum." Fails on the default Stanford parser - online - (with the 7 class model, including Currency)…
user2849678
  • 453
  • 3
  • 14
5
votes
3 answers

Where to get the Alchemyapi API key?

I'm doing the, Getting Started with AlchemyAPI Using Ruby, Ruby tutorial. But I cannot seem to find my API key. Source: http://www.alchemyapi.com/developers/getting-started-guide/using-alchemyapi-with-ruby At step 3: 3) Configure the Ruby SDK to…
tim_xyz
  • 7,219
  • 13
  • 40
  • 77
4
votes
2 answers

Bluemix news api transaction limit exceeded

I have added the Alchemy API service to my Bluemix dashboard and can use the credentials to call the API. I have configured the service to use the "Ecosystem" plan. My App calls the news API fine for the first few calls and then I get API…
Brendan
  • 75
  • 6
3
votes
1 answer

get results for multiple keywords Alchemy Data news Api

Alchemy Data news Api is not providing any results when running multiple keywords. Whereas runs fine when running on a single keyword. here is the URL:…
patz
  • 1,259
  • 4
  • 21
  • 40
3
votes
1 answer

Algorithms behind the Alchemy API for concept and keywords extraction

I've started using the alchemy API but I would like to know if there is any scientific publication that explains the models used for extracting the keywords and the concepts from the text? Also according to this answer Is there way to influence…
sel
  • 828
  • 1
  • 11
  • 23
3
votes
2 answers

Promise.promisify is not a function

I wrote JavaScript like this: var keys=null; var promise=Promise.promisify(alchemyapi.keywords("url",myUrl,{},function(response) { var keywords = { url:myUrl, response:JSON.stringify(response,null,4), results:response['keywords'] }; …
necroface
  • 2,545
  • 5
  • 34
  • 55
3
votes
2 answers

How to automate the creation of a vCAP user-defined variable in a Bluemix deployment?

I am trying to create an application in DevOps Services using Alchemy API services. Every time I try to build and deploy the application I need to set the Alchemy_Key in Bluemix Environment Variable. Is their any option to automate the creation of…
3
votes
1 answer

Alchemy API - truncated-oversized-text-content

getting the warning back of "truncated-oversized-text-content" when using Alchamy's entities API - does anyone know the character limit - I can't find on their support pages.
kyrenia
  • 4,495
  • 7
  • 53
  • 82
3
votes
4 answers

How to check how many calls left in AlchemyAPI? python

The free user for AlchemyAPI can call 1000 requests a day (http://www.alchemyapi.com/products/pricing/). I have been accessing the API with python as such: from alchemyapi import AlchemyAPI demo_text = 'Yesterday dumb Bob destroyed my fancy iPhone…
alvas
  • 94,813
  • 90
  • 365
  • 641
2
votes
1 answer

Alchemy Language + WKS model + NodeJs

I am trying to extract keywords from a URL using the AlchemyLanguage API. I have a custom Watson Knowledge Studio model. The code below doesn't take into account my custom model: var alchemyL = watson.alchemy_language({ api_key: 'mykey', …
2
votes
1 answer

Watson AlchemyLanguage - How do I set the parameters for a CombinedCall

Unfortunately I can't properly tag this question since tags for AlchemyLanguage don't already exist. I'm trying to retrieve multiple extracts from Watson using a combined call. Issuing calls for individual data extracts works as expected, but when I…
m1k3t
  • 93
  • 1
  • 2
  • 7
2
votes
1 answer

AlchemyAPI for Concept Insights's Conceptual Search

Concept Insights has been deprecated, is there any function in AlchemyAPI or other Watson product that can perform Concept Insights's Conceptual Search function…
1
2 3
10 11