Extract named entities such as person, organization, geo-location and many more from given any piece of content.
Try Now!Extract meaningful topics, keywords and combination of keyword from any given piece of content.
Try Now!Get instant summary of any article, blog or media publication in given number of sentences.
Try Now!One of the most used case of NLP, sentimenatl analysis. Analyze sentimental polarity of any given piece of text.
Try Now!Extract Part of Speech tags such as word types to tokens, like verb or noun from the given text content.
Try Now!DataThinker.ai is an API-first approach ML company. Didn't find appropriate API for your next AI project? We can do for you.
Learn MoreLabelling named “real-world” objects, like persons, companies or locations.
A named entity is a “real-world object” that’s assigned a name – for example, a person, a country, a product or a book title. This API can recognize following entities from any given piece of text.
Sample API Request
POST /think-text/api/ner HTTP/1.1 Host: lab.datathinker.ai Content-Type: application/json { "text": "The managing director of the International Monetary Fund has said she wants Britain to stay in the EU, warning that a looming Brexit referendum posed a risk to the UK economy. In an upbeat assessment, Christine Lagarde said the UK was enjoying strong growth, record employment and had largely recovered from the global financial crisis. Presenting the IMF’s annual healthcheck of the economy alongside George Osborne, Lagarde said there were risks to the outlook, including from the housing market, but she was generally positive. “The UK authorities have managed to repair the damage of the crisis in a way few other countries have been able to do,” she said. Lagarde said the IMF would work through various scenarios for the EU referendum outcome in its next assessment of the UK in May 2016. “On a personal basis … I am very, very much hopeful that the UK stays within the EU,” she added. Separately, ratings agency Standard & Poor’s reiterated a warning on Friday that leaving the EU could cost the UK its top credit score. The IMF, which is based in Washington, also used its assessment to recommend that interest rates remain at their record low of 0.5% until there were clearer signs of inflationary pressures. Its report on the UK was delayed for six months due to the general election.", "api_key": "xxxx-xxxx-xxxx-xxxx" }Get Your API Key
Type | Description |
---|---|
PERSON | People, including fictional. |
NORP | Nationalities or religious or political groups. |
FAC | Buildings, airports, highways, bridges, etc. |
ORG | Companies, agencies, institutions, etc. |
GPE | Countries, cities, states. |
LOC | Non-GPE locations, mountain ranges, bodies of water. |
PRODUCT | Objects, vehicles, foods, etc. (Not services.) |
EVENT | Named hurricanes, battles, wars, sports events, etc. |
WORK_OF_ART | Titles of books, songs, etc. |
LAW | Named documents made into laws. |
LANGUAGE | Any named language. |
DATE | Absolute or relative dates or periods. |
TIME | Times smaller than a day. |
PERCENT | Percentage, including ”%“. |
MONEY | Monetary values, including unit. |
QUANTITY | Measurements, as of weight or distance. |
ORDINAL | “first”, “second”, etc. |
CARDINAL | Numerals that do not fall under another type. |
Extract important topics and keywords from given piece of text.
Sample API Request
POST /think-text/api/topics HTTP/1.1 Host: lab.datathinker.ai Content-Type: application/json { "text": "The managing director of the International Monetary Fund has said she wants Britain to stay in the EU, warning that a looming Brexit referendum posed a risk to the UK economy. In an upbeat assessment, Christine Lagarde said the UK was enjoying strong growth, record employment and had largely recovered from the global financial crisis. Presenting the IMF’s annual healthcheck of the economy alongside George Osborne, Lagarde said there were risks to the outlook, including from the housing market, but she was generally positive. “The UK authorities have managed to repair the damage of the crisis in a way few other countries have been able to do,” she said. Lagarde said the IMF would work through various scenarios for the EU referendum outcome in its next assessment of the UK in May 2016. “On a personal basis … I am very, very much hopeful that the UK stays within the EU,” she added. Separately, ratings agency Standard & Poor’s reiterated a warning on Friday that leaving the EU could cost the UK its top credit score. The IMF, which is based in Washington, also used its assessment to recommend that interest rates remain at their record low of 0.5% until there were clearer signs of inflationary pressures. Its report on the UK was delayed for six months due to the general election.", "api_key": "xxxx-xxxx-xxxx-xxxx" }Get Your API Key
Output of Sample Request |
---|
{ "topics": [ "monetary", "britain", "eu", "brexit", "uk", "upbeat assessment", "christine lagarde", "strong growth", "record employment", "global financial crisis", "presenting", "imf", "’ s", "annual healthcheck", "george osborne", "lagarde", "various scenarios", "referendum outcome", "may", "personal basis …", "separately", "ratings agency", "poor", "top credit score", "washington", "interest rates", "clearer signs", "inflationary pressures", "general election" ]} |
Extract summary of given article link.
Sample API Request
POST /think-text/api/summary HTTP/1.1 Host: lab.datathinker.ai Content-Type: application/json { "article_url":"https://onezero.medium.com/to-revive-the-mac-apple-wants-to-kill-electron-154873336e78?source=grid_home", "n_sentence": 5, "api_key": "xxxx-xxxx-xxxx-xxxx-xxxx" }Get Your API Key
Output of Sample Request |
---|
{ "text_summary": [ "Many of the tools you use every day are based on Electron or similar frameworks, including Slack, Visual Studio Code, Spotify, WhatsApp, Discord, and more.", "If developers can build with web-based frameworks, theyre less likely to use Apples tools, services, and ultimately, its App Store.", "If you dont know what Jira is, be thankful: Its one of the most loathed project management tools developers are forced to use every day, and its an odd choice as a demonstration of compelling apps on the desktop.", "This Hail Mary arrived too late, and it wont even satisfy every developer working on Apple platforms.", "Its great for developers to have more options, but Id argue that Electron has already eaten native apps whole." ]} |
Perform sentimental analysis on given piece of text.
Sample API Request
POST /think-text/api/sentiment HTTP/1.1 Host: lab.datathinker.ai Content-Type: application/json { "text":"The managing director of the International Monetary Fund has said she wants Britain to stay in the EU, warning that a looming Brexit referendum posed a risk to the UK economy. In an upbeat assessment, Christine Lagarde said the UK was enjoying strong growth, record employment and had largely recovered from the global financial crisis. Presenting the IMF’s annual healthcheck of the economy alongside George Osborne, Lagarde said there were risks to the outlook, including from the housing market, but she was generally positive. “The UK authorities have managed to repair the damage of the crisis in a way few other countries have been able to do,” she said. Lagarde said the IMF would work through various scenarios for the EU referendum outcome in its next assessment of the UK in May 2016. “On a personal basis … I am very, very much hopeful that the UK stays within the EU,” she added. Separately, ratings agency Standard & Poor’s reiterated a warning on Friday that leaving the EU could cost the UK its top credit score. The IMF, which is based in Washington, also used its assessment to recommend that interest rates remain at their record low of 0.5% until there were clearer signs of inflationary pressures. Its report on the UK was delayed for six months due to the general election.", "api_key": "xxxx-xxxx-xxxx-xxxx-xxxx" }Get Your API Key
Output of Sample Request |
---|
{ "sentiment": [ "positive", 0.09689960832817975 ] } |
Extract Part of Speech tag from given piece of text.
Sample API Request
POST /think-text/api/pos HTTP/1.1 Host: lab.datathinker.ai Content-Type: application/json { "text":"The managing director of the International Monetary Fund has said she wants Britain to stay in the EU, warning that a looming Brexit referendum posed a risk to the UK economy. In an upbeat assessment, Christine Lagarde said the UK was enjoying strong growth, record employment and had largely recovered from the global financial crisis. Presenting the IMF’s annual healthcheck of the economy alongside George Osborne, Lagarde said there were risks to the outlook, including from the housing market, but she was generally positive. “The UK authorities have managed to repair the damage of the crisis in a way few other countries have been able to do,” she said. Lagarde said the IMF would work through various scenarios for the EU referendum outcome in its next assessment of the UK in May 2016. “On a personal basis … I am very, very much hopeful that the UK stays within the EU,” she added. Separately, ratings agency Standard & Poor’s reiterated a warning on Friday that leaving the EU could cost the UK its top credit score. The IMF, which is based in Washington, also used its assessment to recommend that interest rates remain at their record low of 0.5% until there were clearer signs of inflationary pressures. Its report on the UK was delayed for six months due to the general election.", "api_key": "xxxx-xxxx-xxxx-xxxx-xxxx" }Get Your API Key
Output of Sample Request |
---|
{ "pos_tage": [ [ "The", "the", "DET", "DT", "det", "Xxx", true, true ], [ "managing", "manage", "VERB", "VBG", "amod", "xxxx", true, false ], [ "director", "director", "NOUN", "NN", "nsubj", "xxxx", true, false ], [ "of", "of", "ADP", "IN", "prep", "xx", true, true ], [ "the", "the", "DET", "DT", "det", "xxx", true, true ], [ "International", "International", "PROPN", "NNP", "compound", "Xxxxx", true, false ], [ "Monetary", "Monetary", "PROPN", "NNP", "compound", "Xxxxx", true, false ], [ "Fund", "Fund", "PROPN", "NNP", "pobj", "Xxxx", true, false ], [ "has", "have", "VERB", "VBZ", "aux", "xxx", true, true ], [ "said", "say", "VERB"] ... |