AI Text Analyzer Pro avatar

AI Text Analyzer Pro

Try for free

2 hours trial then $10.00/month - No credit card required now

View all Actors
AI Text Analyzer Pro

AI Text Analyzer Pro

datavoyantlab/ai-text-analyzer-pro
Try for free

2 hours trial then $10.00/month - No credit card required now

AI Text Analyzer Pro performs comprehensive text analysis to generate detailed insights from your text data. It processes the input text to produce a structured JSON output with a summary, sentiment analysis, keyword extraction, entity recognition, language detection, and more.

You can access the AI Text Analyzer Pro programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11    "texts": [
12        "I went to Café Delights last Saturday with a few friends. We had high hopes because we had heard good things about the place. The café itself is charming with its cozy decor and inviting atmosphere. We were really looking forward to trying their famous pastries and coffee. However, the experience was quite mixed. We were seated quickly, but it took an unusually long time to get our drinks. After we placed our order, it felt like we were waiting forever. When our coffee finally came, it was not hot enough, and one of my friends even got a different type of coffee than what they ordered. The pastries were decent, but nothing extraordinary. We noticed that some tables around us were getting their orders much faster. It seemed like there might have been a problem with our server or perhaps an issue in the kitchen. Also, the portion sizes were inconsistent. For example, one of us ordered a sandwich that was much smaller compared to what another table received for the same item. This inconsistency in portion sizes was a bit frustrating, especially considering the prices. Overall, while the café has potential and a great atmosphere, the slow service and the mixed quality of the portions made the visit less enjoyable than we had anticipated. It might have been an off day, but these issues need to be addressed to improve the overall customer experience. We would like to see improvements in service speed and consistency before considering returning.",
13        "Erling Haaland's ridiculous scoring start to the season rolled on as he scored his eighth and ninth goals in Man City's 2-1 win over Brentford. Haaland's double means City's star striker has become the first player in Premier League history to score nine goals across the first four games. The Norwegian had been a doubt for the game following the death of a close family friend but he was at his devastating best. His team needed him too as Brentford were excellent in the first half, scoring the fastest goal of the season so far when Yoane Wissa netted after 22 seconds. As it happened: How Erling Haaland broke Brentford Teams | Match stats Live Premier League table | Watch PL highlights for free Stream the Premier League with NOW Team news Pep Guardiola welcomed back Kyle Walker and John Stones for their first starts of the season after their exploits in the summer with England. They were two of four changes made from the win at West Ham with Ilkay Gundogan making his first start since his return and Savinho returning from injury. Sepp van den Berg and Keane Lewis-Potter came in for Brentford whilst Kevin Schade dropped to the bench. Thomas Frank's team had more possession and created a higher volume of expected goals inside 45 minutes than Pep Guardiola's - but Haaland's ruthless finishing before the break was the difference. Player ratings: Man City: Ederson (8), Walker (7), Stones (5), Akanji (6), Lewis (6), Gundogan (6), Kovacic (6), De Bruyne (7), Grealish (7), Savinho (7), Haaland (9) Subs: Rodri (7), Gvardiol (7), Nunes (6), Dias (7), Silva (7) Brentford: Flekken (7), Ajer (7), Collins (7), Pinnock (6), Van den Berg (7), Janelt (6), Norgaard (7), Damsgaard (7), Lewis-Potter (7), Mbeumo (8), Wissa (8) Subs: Yarmoliuk (6), Schade (6), Carvalho (6), Roerslev (6) Player of the Match: Haaland Haaland was the width of the post away from becoming the first player in Premier League history to score hat-tricks in three successive games as City established more control as the game wore on. Trending Sancho assists Nkunku as Chelsea beat Bournemouth LIVE on Sky! & highlights Solheim Cup LIVE! Europe hanging by a thread as USA move further clear Azerbaijan GP: Russell escapes penalty, Gasly disqualified from Qualifying Slot's perfect start is over - here's what went wrong... Kane fires hat-trick in 6-1 win for Bayern PL hits and misses: Hope for the rest - Man City are vulnerable! Everton throw away two-goal lead AGAIN as Duran stunner earns Villa win Norris' title blow: McLaren critical of FIA after 'costly' Q1 exit Transfer Centre: WSL Deadline Day recap Man Utd cruise past Southampton to claim all three points Watch Latest News City also welcomed back Rodri for the first time this season in the second half and further chances came for Haaland as Mark Flekken denied him on a couple of occasions. It's now four wins from four for City, who remain perfect in their bid to defend their Premier League crown."
14    ],
15    "proxy": {
16        "useApifyProxy": true
17    }
18};
19
20// Run the Actor and wait for it to finish
21const run = await client.actor("datavoyantlab/ai-text-analyzer-pro").call(input);
22
23// Fetch and print Actor results from the run's dataset (if any)
24console.log('Results from dataset');
25console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
26const { items } = await client.dataset(run.defaultDatasetId).listItems();
27items.forEach((item) => {
28    console.dir(item);
29});
30
31// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

AI Text Analyzer Pro API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use AI Text Analyzer Pro API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include:

Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 1 star
  • 100.0% runs succeeded
  • Created in Sep 2024
  • Modified 4 days ago