content generation api post image

Create Articles for Web Pages with Content Generation API

Creating quality content is one of the main reasons for the success of business on the Internet. This process involves many specialists, such as SEOs, marketers, and tool developers, who non-stop create, promote, and analyze content.

If you’re looking to scale your content production efforts DataForSEO launched a new Content Generation API providing a cost-effective solution for automated content generation using Natural Language Processing (NLP) technology.

Content Generation API uses machine learning algorithms to create unique and personalized content that reads like it was written by a human. With its help, you can build a wide range of features, such as chatbots, voice assistants, and automated content marketing campaigns. The possibilities are endless, and the ability to produce content on demand makes it an invaluable tool for businesses looking to scale their content production efforts.

In this article, we will walk you through the basics of the primary text generation technologies and share practical advice on how you can integrate Content Generation API into the functionality of a content creation tool.

What is Content Generation API and how NLP helps it work?

Automated text generators use advanced Natural Language Processing (NLP) technology to analyze existing text and generate new text that is similar in style. This process involves training a Language Model on a large number of text datasets, which can include collections of books or articles. The language model is then able to generate text by predicting the next word or phrase in a sequence of words, based on the patterns it has learned from the training data.

DataForSEO Content Generation API is based on a powerful Language Model to guarantee fast results and quality of the content!

To derive text with Content Generation API you need to provide initial target text, which is a small amount of input text that can be used by a model to start the generation. The process occurs along the chain – the model uses input text to generate the next word or phrase and then uses that output to generate the next one, and so on. In this way, the model can produce highly coherent and fluent sentences and paragraphs that are similar in style. In addition, it improves its writing skills while generating more and more new text.

Note that the generated text is plagiarism-free, but we suggest reviewing it with a human editor.

One of the main challenges in developing a text generator is ensuring that the result is of high quality and free of errors or inconsistencies. To achieve this Content Generation API incorporates NLP techniques, such as spell-checking and grammar-checking. Thus our model can generate grammatically correct text that is a logical extension of the input and is transparent to read.

You can automatically create content using the following endpoints:

  • Generate – provides you with a text generated based on the part of the input text and other available parameters;
  • Generate Meta Tags – generates title and description meta tags for the given text;
  • Generate Text – generates text based on the topic and subtopics you specify;
  • Generate Subtopics – generates subtopics based on the topic and creativity parameter;
  • Paraphrase – returns a paraphrased version of the given text;
  • Check Grammar – provides grammar and spelling corrections for the specified text;
  • Text Summary – gives statistical data based on the input text.

Content Generation API uses a Live method of task execution, so the results will be provided in response right away. You can send up to 2000 API calls per minute.

Keep reading to learn some use cases for building a custom content generation tool.

What features can be built with Content Generation API?

DataForSEO Content Generation API will take your content creation to a new level. As many as six endpoints open up a huge number of possibilities for integrating the API into various tools for generating text.

Let’s talk about which features can be built with Content Generation API on the example of Frase.io – one of the most popular content creation platforms on the market.

Frase.io combines machine learning and natural language processing to help businesses produce high-quality content more quickly and efficiently. Among numerous tools, we will focus on the primary features that use automated text generation to create content for different purposes.

Content writing

You can use the “Content Generator” tool to quickly and easily receive optimized content of any type and size. You need to specify the brief where you outline parameters such as input text, size, and creativity level. The feature enables you to complete your sentences or generate an entirely new paragraph automatically.

frase.io content writingBelow we will describe how to build a Content writing feature with the help of DataForSEO Content Generation API, tell about three endpoints that generate text, and explain their difference.

For writing articles of any complexity use our Generate endpoint. Its primary operating principle is the addition of the existing text. The best way to use it is for writing articles for your website or blog. A significant number of parameters makes this endpoint a more complex solution that considers factors essential for your SEO optimization.

To make a request it is required to specify two parameters:

  • text
  • max_new_tokens or max_tokens

There are also a bunch of optional parameters that you can use to clarify your request and get higher-quality content. See the full list in our documentation.
However, we’d like to highlight four basic fields that regulate the randomness of the selection for the output:

  • creativity_index – the randomness of the selection of equally probable subsequent tokens;
  • top_k – the number of initial tokens in each iteration for choosing a subsequent word;
  • top_p – excludes initial tokens with a probability lower than one;
  • temperature – selection of words with a higher or lower probability of occurrence.

They can be used together or separately. Note that: if both top_k and top_p are used, top_k acts first.

Example request:

[
    {
        "text": "SEO is",
        "max_new_tokens": 100,
        "repetition_penalty": 1.01,
        "top_p": 1,
        "temperature": 0.1,
        "top_k": 4,
        "stop_words": [
            "123",
            "\n"
        ],
        "creativity_index": 1,
        "avoid_starting_words": [
            "SEO",
            "search engine optimization",
            "SEO is"
        ]
    }
]

{
  "version": "0.1.20221214",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "2.4777 sec.",
  "cost": 0.005,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "01251709-1535-0499-0000-44c5db9d748f",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "2.4397 sec.",
      "cost": 0.005,
      "result_count": 1,
      "path": [
        "v3",
        "content_generation",
        "generate",
        "live"
      ],
      "data": {
        "api": "content_generation",
        "function": "generate",
        "text": "SEO is",
        "max_new_tokens": 100,
        "repetition_penalty": 1.01,
        "top_p": 1,
        "temperature": 0.1,
        "top_k": 4,
        "stop_words": [
          "123",
          "\n"
        ],
        "creativity_index": 1,
        "avoid_starting_words": [
          "SEO",
          "search engine optimization",
          "SEO is"
        ]
      },
      "result": [
        {
          "input_tokens": 3,
          "output_tokens": 103,
          "new_tokens": 100,
          "generated_text": "SEO is a very important part of any website. It is the most important part of any website. It is the most important part of any website. It is the most important part of any website. It is the most important part of any website. It is the most important part of any website. It is the most important part of any website. It is the most important part of any website. It is the most important part of any website. It is the most important part of any website. It is",
          "supplement_token": "oI++SQ"
        }
      ]
    }
  ]
}

Another function of Frase.io is the “Article Writer” tool. There you can generate an article based on the given title and creativity level. The default number of output tokens is 400, but you can press the “Load more” button to add paragraphs. The “Heading” tool has the same functionality, but its main purpose is to generate 100 output tokens at a time.

frase.io content writingWith the help of Generate Text endpoint, you can generate text based on the topic and subtopics. This feature will be a great solution for creating different-sized blog posts. All it takes is to indicate the topic parameter and you will get a whole paragraph of relevant information. To specify you request for the model use sub_topics – secondary topics that can be used in generation.

For better correspondence, you can also set the description and meta_keywords parameters. A brief meta description will improve the quality of the generated text and facilitate communication between the user and the model. Setting keywords guarantee SEO-optimized content that will work best for your blog. In addition, you can indicate whether your article will have a conclusion using the write_conclusion.

Example request:

[
  {
    "topic": "Steve Jobs",
    "sub_topics": [
      "Apple",
      "Pixar",
      "Amazing Products"
    ],
    "description": "Take a closer look at Steve Jobs' life and his incredible impact on the tech industry, with a special focus on the development of the iPhone.",
    "meta_keywords": [
      "iPhone",
      "sell",
      "CEO"
    ],
    "creativity_index": 0.8,
    "word_count": 200,
    "write_conclusion": true
  }
]

{
    "version": "0.1.20221214",
    "status_code": 20000,
    "status_message": "Ok.",
    "time": "6.6731 sec.",
    "cost": 0.0129,
    "tasks_count": 1,
    "tasks_error": 0,
    "tasks": [
        {
            "id": "02161338-4426-0502-0000-eeb570df7937",
            "status_code": 20000,
            "status_message": "Ok.",
            "time": "6.6443 sec.",
            "cost": 0.0129,
            "result_count": 1,
            "path": [
                "v3",
                "content_generation",
                "generate_text",
                "live"
            ],
            "data": {
                "api": "content_generation",
                "function": "generate_text",
                "topic": "Steve Jobs",
                "sub_topics": [
                    "Apple",
                    "Pixar",
                    "Amazing Products"
                ],
                "description": "Take a closer look at Steve Jobs' life and his incredible impact on the tech industry, with a special focus on the development of the iPhone.",
                "meta_keywords": [
                    "iPhone",
                    "sell",
                    "CEO"
                ],
                "creativity_index": 0.8,
                "word_count": 200,
                "write_conclusion": true
            },
            "result": [
                {
                    "input_tokens": 102,
                    "output_tokens": 258,
                    "new_tokens": 258,
                    "generated_text": "The iPod is the best selling portable music player in history (1). It has been reported that over 250 million iPods have now sold worldwide and it's estimated to be used by 100% of all college students.(2) The success story for this product can't be understated as it was first released just 10 years ago! However, despite being one of the most successful products ever created, there are some people who feel that the iPod should not have won so many awards. I believe these award winners were very deserving but it does seem odd that an MP3 Player would win such prestigious awards. This may be because we've become accustomed to having our lives centered around technology and when something like the iPod came along, we weren't ready to make changes to our lifestyle yet - no more CDs, cassettes or tapes. And although the iTunes store revolutionized how we bought music online, there still isn't anything comparable to the quality of the sound you hear from your own CD collection compared to downloaded tracks. But perhaps what makes the iPod truly amazing is its ability to completely change our daily habits. We use it everywhere, every day - whether its listening to songs while exercising, driving down the highway, going shopping or even watching television - everyone uses their iPods constantly throughout each day.",
                    "supplement_token": "eZXNKA"
                }
            ]
        }
    ]
}

To improve the clarity of the request to Generate Text use our Generate Subtopics endpoint. It will provide you with 10 subtopics generated based on the topic and creativity_index. It is a valuable tool for creating content ideas and structuring your blog. You can use subtopics as an addition to text generation to get a better result or use these ideas as topics for future posts.

For example, let’s imagine that all the content on your page can be described by a common “SEO” theme. Using the Generate Subtopics endpoint, you will get subtopics that can be the headlines of your next articles. You can repeat this action many times to get a clear structure of the main and secondary content for the page.

Example request:

[
  {
    "topic": "SEO",
    "creativity_index": 0.8
  }
]

{
  "version": "0.1.20221214",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "2.2721 sec.",
  "cost": 0.0001,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "03161913-4426-0543-0000-750e1a8ab8a9",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "2.1755 sec.",
      "cost": 0.0001,
      "result_count": 1,
      "path": [
        "v3",
        "content_generation",
        "generate_sub_topics",
        "live"
      ],
      "data": {
        "api": "content_generation",
        "function": "generate_sub_topics",
        "topic": "Steve Jobs",
        "creativity_index": 0.8
      },
      "result": [
        {
          "input_tokens": 19,
          "output_tokens": 78,
          "new_tokens": 78,
          "sub_topics": [
            "What is SEO?",
            "The Importance of a Good Website Design and UX",
            "How to Choose the Best Website Designer for Your Business",
            "Why You Need an Effective Website Design",
            "How to Create a Perfect User Experience on Mobile",
            "What is Coding?",
            "Types of Websites and their Limitations",
            "What Is Social Media Marketing?",
            "What is Content Marketing?",
            "What is Paid Advertising?"
          ]
        }
      ]
    }
  ]
}

SEO Meta tags

SEO meta tags consist of a web page’s title and description that appear in SERP. These tags are crucial for SEO optimization because they create visitors’ first impressions of your page and influence their interaction with your site.

content generation SEO metatags

content generation metatags

Frase.io’s “Semantic Topics” tool generates a list of semantically related topics for the given text. “Meta Description Generator” helps you get meta descriptions for your blog posts based on the title you specify. Moreover, the tool can give you an outline for your blog, so you don’t need to struggle to create new topic ideas for the next articles.

Title and Description Generators can be built on the back of DataForSEO Content Generation API – Generate Meta Tags endpoint. These features will save you a lot of time and money in creating meta tags that are truly based on the keywords used in your article and will boost your conversion rate.

All you need is to set the text and creativity parameters:

[
  {
    "text": "The idea to develop an instrument for local SEO didn’t come to the GMB Crush CEO, Matteo Barletta, out of the blue. Having a huge interest in search engine optimization, Matteo has come a long way from being an SEO freelancer to launching his own agency, SEO Heroes. At some point, he and his team noticed that it was quite challenging to work with local SEO projects, especially those related to Google My Business listings. There were simply no tools that could streamline their work and provide the functionality the agency needed.\n\n“We started to develop the idea of ​​our tool capable of doing Google Business SEO audits, tracking stats, and generating business proposals at the same time.",
    "creativity": 0.9
  }
]

{
  "version": "0.1.20221214",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "2.7399 sec.",
  "cost": 0.001,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "01241756-1535-0501-0000-77103d40a081",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "2.6929 sec.",
      "cost": 0.001,
      "result_count": 1,
      "path": [
        "v3",
        "content_generation",
        "generate_meta_tags",
        "live"
      ],
      "data": {
        "api": "content_generation",
        "function": "generate_meta_tags",
        "text": "The idea to develop an instrument for local SEO didn’t come to the GMB Crush CEO, Matteo Barletta, out of the blue. Having a huge interest in search engine optimization, Matteo has come a long way from being an SEO freelancer to launching his own agency, SEO Heroes. At some point, he and his team noticed that it was quite challenging to work with local SEO projects, especially those related to Google My Business listings. There were simply no tools that could streamline their work and provide the functionality the agency needed.\n\n“We started to develop the idea of ​​our tool capable of doing Google Business SEO audits, tracking stats, and generating business proposals at the same time.",
        "creativity": 0.9
      },
      "result": [
        {
          "input_tokens": 147,
          "output_tokens": 65,
          "new_tokens": 65,
          "title": "GMBCRUSH is a Google My Business SEO Audit Tool",
          "description": "GMB Crush is a Google My Business SEO Audit Tool. It helps you identify and solve problems in your Google My Business listing. You can use it to perform a complete audit of your GMB listing, track your rankings, and generate proposals for improving your listing."
        }
      ]
    }
  ]
}

Rewriting articles

The main reason for rewriting is obviously to improve the quality of your articles. This feature helps you avoid wordy sentences, incomprehensible phrases, and uncompelling titles. Besides, rewriting articles excludes any plagiarism. Search engines pay a lot of attention to this topic, and websites that contain texts with a high plagiarism rate can have problems with SERP rankings.

content generation rewriting articlesUsually, marketing agencies and writers use an editor to review articles and bring changes. Frase.io suggests “Paragraph Rewriter” and “Paraphrasing” tools as a solution for making unique content for your website, blog, or social media posts.

With the help of the DataForSEO Content Generation API – Paraphrase endpoint, you could build your solutions for automated text rewriting. A rewriting tool takes on the role of editor and improves the quality of your content by implementing changes to the original text.

All you need is to set the text and creativity parameters:

[
  {
        "text": "The idea to develop an instrument for local SEO didn’t come to the GMB Crush CEO, Matteo Barletta, out of the blue. Having a huge interest in search engine optimization, Matteo has come a long way from being an SEO freelancer to launching his own agency, SEO Heroes. At some point, he and his team noticed that it was quite challenging to work with local SEO projects, especially those related to Google My Business listings.",
        "creativity_index": 0.8
    }
]

{
    "version": "0.1.20221214",
    "status_code": 20000,
    "status_message": "Ok.",
    "time": "8.9468 sec.",
    "cost": 0.01395,
    "tasks_count": 1,
    "tasks_error": 0,
    "tasks": [
        {
            "id": "01061653-1535-0503-0000-b2a17a6625dc",
            "status_code": 20000,
            "status_message": "Ok.",
            "time": "8.8914 sec.",
            "cost": 0.01395,
            "result_count": 1,
            "path": [
                "v3",
                "content_generation",
                "paraphrase",
                "live"
            ],
            "data": {
                "api": "content_generation",
                "function": "paraphrase",
                "text": "The idea to develop an instrument for local SEO didn’t come to the GMB Crush CEO, Matteo Barletta, out of the blue. Having a huge interest in search engine optimization, Matteo has come a long way from being an SEO freelancer to launching his own agency, SEO Heroes. At some point, he and his team noticed that it was quite challenging to work with local SEO projects, especially those related to Google My Business listings.",
                "creativity_index": 0.8
            },
            "result": [
                {
                    "input_tokens": 93,
                    "output_tokens": 104,
                    "new_tokens": 104,
                    "generated_text": "We realized that most clients that approached us were struggling with the lack of resources that Google provides to help them with local SEO,” Matteo tells us. “They’d try to get their hands on everything from a book on SEO to a list of tools that would solve their issues.”\n\n“We were able to see that, in the majority of cases, the lack of resources was the main reason why they were struggling with local SEO,” Matteo says."
                }
            ]
        }
    ]
}

How to use Content Generation API for SEO?

In order to get high rankings, your content should be SEO-optimized. Creating articles that are interesting to read and can be easily perceived by the system is a long and tedious process. With the help of our Content Generation API, you can easily generate articles of any size, type, and purpose. This feature is indispensable for any business or content manager that wants to scale the content production process. NLP technology enables it to understand and replicate the nuances of language, making it ideal for producing high-quality content such as product descriptions, blog articles, social media posts, and more.

Furthermore, SEO experts can leverage Content Generation API to create search-engine-optimized content quickly and easily. By targeting specific keywords and phrases, the API can produce content that ranks well in search engines, driving more traffic and leads to your website.

For example, while requesting to Generate Text endpoint, you can specify the "description" and "meta_keywords" parameters. It brings content generation to a new level where the model writes quality texts which correspond with your marketing strategy.

Note that: you can specify up to 10 keywords in one request.

Let’s make an example request for SEO tool’s blog post:

[
  {
    "topic": "What is SEO?",
    "sub_topics": [
      "importance of website",
      "content",
      "paid advertising"
    ],
    "description": "Learn what SEO is and how it affects your search rankings.",
    "meta_keywords": [
      "rank",
      "keywords",
      "Google",
      "CPC"
    ],
    "creativity_index": 0.8,
    "word_count": 500,
    "write_conclusion": true
  }
]

{
  "version": "0.1.20221214",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "15.3985 sec.",
  "cost": 0.03245,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "03202015-4426-0502-0000-c8b10fb0dbb4",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "15.3498 sec.",
      "cost": 0.03245,
      "result_count": 1,
      "path": [
        "v3",
        "content_generation",
        "generate_text",
        "live"
      ],
      "data": {
        "api": "content_generation",
        "function": "generate_text",
        "topic": "What is SEO?",
        "sub_topics": [
          "importance of website",
          "content",
          "paid advertising"
        ],
        "description": "Learn what SEO is and how it affects your search rankings.",
        "meta_keywords": [
          "rank",
          "keywords",
          "Google",
          "CPC"
        ],
        "creativity_index": 0.8,
        "word_count": 500,
        "write_conclusion": true
      },
      "result": [
        {
          "input_tokens": 114,
          "output_tokens": 649,
          "new_tokens": 649,
          "generated_text": "If you want to rank on the first page of a keyword in any language, then having a well designed web site that can be easily indexed by all major search engines will make or break you! If you are not ranking with keywords at least 10 - 15% of the time, then chances are good that you need some help getting traffic for your business. So before we dive into the next section, let's talk about why having an online presence matters...\n\n\n\nWebsite content\n\nSearch engine optimization has been around since the mid 90’s. Since those early days, there have only been two ways to get high ranking sites – manual link building and paid advertising. Today however, as we enter the age of social media marketing, things have changed. You don't have to rely solely upon traditional methods anymore because today more than ever, people look towards their friends, family members, colleagues, and other trusted individuals when they are looking for products/services. Social media channels such as Facebook, Twitter, YouTube etc., provide businesses with one way of reaching customers without spending money on ads. By creating content, publishing posts regularly and monitoring mentions within these networks, you create buzz which attracts new prospects to your brand. This allows them to see who you really are instead of just hearing stories from word of mouth like they used to. The truth is that if you do this right and keep track of your efforts over time, you could potentially grow your reach exponentially through organic growth. Now I know what you're thinking “John, I already publish articles but where am I going to find time to write blog posts every day?!” That is something that I'm sure many entrepreneurs struggle with too so allow me to share my top tips for increasing productivity while keeping up with regular blogging activities:\n\n1. Schedule Blog Posting Time Into Your Day To Avoid Stress & Overload When you start out small with content creation, try scheduling 5 minutes per day onto specific blocks throughout the week. For example, Monday = Product Reviews Tuesday = Case Studies Wednesday = How-To Articles Thursday = Industry News Friday = Promotions Saturday = Company Updates Sunday= Miscellaneous These times should remain consistent regardless of what else needs attention during the course of the day. Once you've set aside certain periods each day, simply follow through with whatever you would normally do and leave yourself enough time to finish your post plus a little extra. Also remember that even though it may take longer to produce quality content initially, once you develop consistency, writing becomes easier overtime. It takes patience to build great content but ultimately, results come quicker if you invest some time now versus waiting until later.\n\n2. Find Inspiration Wherever You Are As stated earlier, one way to generate ideas for fresh topics is by taking note of conversations happening across various social media platforms. One particular area that you should pay close attention to are industry forums where companies discuss latest news updates and best practices regarding sales, pricing strategies, product development, customer support, branding etc. Another place where inspiration comes easy is through reading blogs written by experts in the field. Not only does it give you valuable insight into areas related to your niche, but also helps increase your knowledge base and overall skillset.",
          "supplement_token": "XUCCWA"
        }
      ]
    }
  ]
}

Combination with other APIs

Although Content Generation API is a great base for text generation tools by itself, combining it with other DataForSEO APIs will expand opportunities for creating unique content for your customers.

For example, you can get content from any website you specify with the Content Parsing endpoint of the OnPage API. It is designed to crawl any website or webpage according to customizable parameters and evaluate its on-page optimization performance against a multitude of SEO and website health benchmarks. We suggest to use Live method of data execution to get instant results.

Example request to get Content Parsing Live data:

[
  {
    "url": "https://www.fujielectric.com/company/story/interview/interview04.html"
  }
]

{
    "version": "0.1.20221214",
    "status_code": 20000,
    "status_message": "Ok.",
    "time": "2.1141 sec.",
    "cost": 0.000125,
    "tasks_count": 1,
    "tasks_error": 0,
    "tasks": [
        {
            "id": "02202339-4426-0495-0000-85d0eb8d4b31",
            "status_code": 20000,
            "status_message": "Ok.",
            "time": "1.7786 sec.",
            "cost": 0.000125,
            "result_count": 1,
            "path": [
                "v3",
                "on_page",
                "content_parsing",
                "live"
            ],
            "data": {
                "api": "on_page",
                "function": "content_parsing",
                "url": "https://www.fujielectric.com/company/story/interview/interview04.html"
            },
            "result": [
                {
                    "crawl_progress": "finished",
                    "crawl_status": null,
                    "items_count": 1,
                    "items": [
                        {
                            "type": "content_parsing_element",
                            "fetch_time": "2023-02-20 19:39:08 +00:00",
                            "page_content": {
                                "header": {
                                    "primary_content": [
                                        {
                                            "text": "Industry-Academia Collaboration and Co-Creation with Partner Companies. Fuji Electric Now Aiming for Carbon Neutrality.",
                                            "url": null
                                        }
                                    ],
                                    "secondary_content": [
                                        {
                                            "text": "Hong Kong",
                                            "url": "https://www.hk.fujielectric.com/en/"
                                        },
                                        {
                                            "text": "About Us",
                                            "url": null
                                        },
                                        {
                                            "text": "Corporate Data",
                                            "url": "https://www.fujielectric.com/company/data.html"
                                        },
                                        {
                                            "text": "Management Strategy",
                                            "url": "https://www.fujielectric.com/company/"
                                        },
                                        {
                                            "text": "Our Businesses",
                                            "url": "https://www.fujielectric.com/company/business/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Contribution to SDGs",
                                            "url": "https://www.fujielectric.com/company/csr/sdgs/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Global Network",
                                            "url": "https://www.fujielectric.com/company/"
                                        },
                                        {
                                            "text": "Drives & Inverters",
                                            "url": "https://www.fujielectric.com/products/drives_inverters.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Power Supply",
                                            "url": "https://www.fujielectric.com/products/power_supply.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Sensors & Measurements",
                                            "url": "https://www.fujielectric.com/products/sensors_measurements.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Factory Automation",
                                            "url": "https://www.fujielectric.com/products/factory_automation.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Distributions & Controls",
                                            "url": "https://www.fujielectric.com/products/distributions_controls.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Transmission & Distribution",
                                            "url": "https://www.fujielectric.com/products/transmission_distribution.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Social Infrastructure",
                                            "url": "https://www.fujielectric.com/products/social_infrastructure.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Energy Management",
                                            "url": "https://www.fujielectric.com/products/energy_management.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Food and Beverage Distribution",
                                            "url": "https://www.fujielectric.com/products/food.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Equipment Upgrades",
                                            "url": "https://www.fujielectric.com/products/renewal.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Technical Document",
                                            "url": "https://felib.fujielectric.co.jp/download/search2.htm?dosearch=1&site=global&lang=en&documentGroup=technical"
                                        },
                                        {
                                            "text": "CAD data & Outline drawing",
                                            "url": "https://felib.fujielectric.co.jp/download/searchcad3.htm?dosearch=1&documentGroup=cad&site=global&lang=en"
                                        },
                                        {
                                            "text": "Management Information",
                                            "url": "https://www.fujielectric.com/ir/management/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "IR Library",
                                            "url": "https://www.fujielectric.com/ir/library/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Financial Information",
                                            "url": "https://www.fujielectric.com/ir/financial_data/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Stock and Bond Information",
                                            "url": "https://www.fujielectric.com/ir/stock_bond/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "ESG Material Issues",
                                            "url": "https://www.fujielectric.com/company/csr/material-issues.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Environmental Vision 2050",
                                            "url": "https://www.fujielectric.com/company/csr/global_environment/management_02_02.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Contact Us",
                                            "url": "https://www.fujielectric.com/contact/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "About Us",
                                            "url": "https://www.fujielectric.com/company/"
                                        },
                                        {
                                            "text": "Corporate Data",
                                            "url": "https://www.fujielectric.com/company/data.html"
                                        },
                                        {
                                            "text": "Management Strategy",
                                            "url": "https://www.fujielectric.com/company/"
                                        },
                                        {
                                            "text": "Our Businesses",
                                            "url": "https://www.fujielectric.com/company/business/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Contribution to SDGs",
                                            "url": "https://www.fujielectric.com/company/csr/sdgs/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Global Network",
                                            "url": "https://www.fujielectric.com/company/"
                                        },
                                        {
                                            "text": "Products & Solutions",
                                            "url": "https://www.fujielectric.com/products/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Drives & Inverters",
                                            "url": "https://www.fujielectric.com/products/drives_inverters.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Power Supply",
                                            "url": "https://www.fujielectric.com/products/power_supply.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Sensors & Measurements",
                                            "url": "https://www.fujielectric.com/products/sensors_measurements.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Factory Automation",
                                            "url": "https://www.fujielectric.com/products/factory_automation.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Distributions & Controls",
                                            "url": "https://www.fujielectric.com/products/distributions_controls.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Transmission & Distribution",
                                            "url": "https://www.fujielectric.com/products/transmission_distribution.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Social Infrastructure",
                                            "url": "https://www.fujielectric.com/products/social_infrastructure.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Energy Management",
                                            "url": "https://www.fujielectric.com/products/energy_management.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Food and Beverage Distribution",
                                            "url": "https://www.fujielectric.com/products/food.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Equipment Upgrades",
                                            "url": "https://www.fujielectric.com/products/renewal.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Technical Document",
                                            "url": "https://felib.fujielectric.co.jp/download/search2.htm?dosearch=1&site=global&lang=en&documentGroup=technical"
                                        },
                                        {
                                            "text": "CAD data & Outline drawing",
                                            "url": "https://felib.fujielectric.co.jp/download/searchcad3.htm?dosearch=1&documentGroup=cad&site=global&lang=en"
                                        },
                                        {
                                            "text": "Investor Relations",
                                            "url": "https://www.fujielectric.com/ir/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Management Information",
                                            "url": "https://www.fujielectric.com/ir/management/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "IR Library",
                                            "url": "https://www.fujielectric.com/ir/library/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Financial Information",
                                            "url": "https://www.fujielectric.com/ir/financial_data/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Stock and Bond Information",
                                            "url": "https://www.fujielectric.com/ir/stock_bond/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "ESG Material Issues",
                                            "url": "https://www.fujielectric.com/company/csr/material-issues.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Environmental Vision 2050",
                                            "url": "https://www.fujielectric.com/company/csr/global_environment/management_02_02.html?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Contact Us",
                                            "url": "https://www.fujielectric.com/contact/?ui_medium=gl_glnavi"
                                        },
                                        {
                                            "text": "Fe Library",
                                            "url": "https://felib.fujielectric.co.jp/download/index.htm?site=global&lang=en"
                                        },
                                        {
                                            "text": "About Fuji Electric",
                                            "url": "https://www.fujielectric.com/company/"
                                        }
                                    ]
                                },
                                "footer": {
                                    "primary_content": [
                                        {
                                            "text": "© Fuji Electric Co., Ltd. All rights reserved.",
                                            "url": null
                                        }
                                    ],
                                    "secondary_content": [
                                        {
                                            "text": "Corporate Data",
                                            "url": "https://www.fujielectric.com/company/data.html"
                                        },
                                        {
                                            "text": "Management Strategy",
                                            "url": "https://www.fujielectric.com/company/"
                                        },
                                        {
                                            "text": "Our Businesses",
                                            "url": "https://www.fujielectric.com/company/business/"
                                        },
                                        {
                                            "text": "Contribution to SDGs",
                                            "url": "https://www.fujielectric.com/company/csr/sdgs/"
                                        },
                                        {
                                            "text": "Global Network",
                                            "url": "https://www.fujielectric.com/company/"
                                        },
                                        {
                                            "text": "Drives & Inverters",
                                            "url": "https://www.fujielectric.com/products/drives_inverters.html"
                                        },
                                        {
                                            "text": "Power Supply",
                                            "url": "https://www.fujielectric.com/products/power_supply.html"
                                        },
                                        {
                                            "text": "Sensors & Measurements",
                                            "url": "https://www.fujielectric.com/products/sensors_measurements.html"
                                        },
                                        {
                                            "text": "Factory Automation",
                                            "url": "https://www.fujielectric.com/products/factory_automation.html"
                                        },
                                        {
                                            "text": "Distributions & Controls",
                                            "url": "https://www.fujielectric.com/products/distributions_controls.html"
                                        },
                                        {
                                            "text": "Transmission & Distribution",
                                            "url": "https://www.fujielectric.com/products/transmission_distribution.html"
                                        },
                                        {
                                            "text": "Social Infrastructure",
                                            "url": "https://www.fujielectric.com/products/social_infrastructure.html"
                                        },
                                        {
                                            "text": "Energy Management",
                                            "url": "https://www.fujielectric.com/products/energy_management.html"
                                        },
                                        {
                                            "text": "Food and Beverage Distribution",
                                            "url": "https://www.fujielectric.com/products/food.html"
                                        },
                                        {
                                            "text": "Equipment Upgrades",
                                            "url": "https://www.fujielectric.com/products/renewal.html"
                                        },
                                        {
                                            "text": "Technical Document",
                                            "url": "https://felib.fujielectric.co.jp/download/search2.htm?dosearch=1&site=global&lang=en&documentGroup=technical"
                                        },
                                        {
                                            "text": "CAD data & Outline drawing",
                                            "url": "https://felib.fujielectric.co.jp/download/searchcad3.htm?dosearch=1&documentGroup=cad&site=global&lang=en"
                                        },
                                        {
                                            "text": "Management Information",
                                            "url": "https://www.fujielectric.com/ir/management/"
                                        },
                                        {
                                            "text": "IR Library",
                                            "url": "https://www.fujielectric.com/ir/library/"
                                        },
                                        {
                                            "text": "Financial Information",
                                            "url": "https://www.fujielectric.com/ir/financial_data/"
                                        },
                                        {
                                            "text": "Stock and Bond Information",
                                            "url": "https://www.fujielectric.com/ir/stock_bond/"
                                        },
                                        {
                                            "text": "ESG Material Issues",
                                            "url": "https://www.fujielectric.com/company/csr/material-issues.html"
                                        },
                                        {
                                            "text": "Environmental Vision 2050",
                                            "url": "https://www.fujielectric.com/company/csr/global_environment/management_02_02.html"
                                        },
                                        {
                                            "text": "Product Inquiries",
                                            "url": "https://www.fujielectric.com/contact/"
                                        },
                                        {
                                            "text": "Corporate Inquiries",
                                            "url": "https://www.fujielectric.com/contact/contact.php?kind=Investor%20Relations"
                                        },
                                        {
                                            "text": "Privacy policy",
                                            "url": "https://www.fujielectric.com/privacy/index.html"
                                        },
                                        {
                                            "text": "Terms of Services",
                                            "url": "https://www.fujielectric.com/copyright/"
                                        },
                                        {
                                            "text": "Site Map",
                                            "url": "https://www.fujielectric.com/sitemap/"
                                        },
                                        {
                                            "text": "Cookie Settings",
                                            "url": null
                                        },
                                        {
                                            "text": "Social Media",
                                            "url": "https://www.fujielectric.com/socialmedia/"
                                        },
                                        {
                                            "text": "Social Media",
                                            "url": "https://www.fujielectric.com/socialmedia/"
                                        }
                                    ]
                                },
                                "main_topic": [
                                    {
                                        "h_title": "Industry-Academia Collaboration and Co-Creation with Partner Companies. Fuji Electric Now Aiming for Carbon Neutrality.",
                                        "main_title": "Interview",
                                        "author": null,
                                        "language": "en",
                                        "level": 1,
                                        "primary_content": [
                                            {
                                                "text": "Source: Nikkan Kogyo Shimbun Online",
                                                "url": null
                                            },
                                            {
                                                "text": "From September 26, 2022 to October 9, 2022",
                                                "url": null
                                            },
                                            {
                                                "text": "Fuji Electric is involved in decarbonizing the entire supply chain, from the energy supply side, with things such as power generation facilities using renewable energy and other resources, power distribution equipment, and energy management systems (EMS), to the demand side, with things such as transformers, motors, and power semiconductors used in factories, automobiles, and railways. In the research and development of decarbonization-related products and technologies that will be important in achieving carbon neutrality by 2050, the company is working on the practical application of new technologies such as CO 2 separation and recovery technology through open innovation with universities and companies, in addition to improving power electronics technology, which is one of the company's strengths.",
                                                "url": null
                                            },
                                            {
                                                "text": "*We wore masks except when filming, and took measures to protect ourselves from COVID-19.",
                                                "url": null
                                            }
                                        ],
                                        "secondary_content": null
                                    },
                                    {
                                        "h_title": "Accelerate decarbonization",
                                        "main_title": "Interview",
                                        "author": null,
                                        "language": "en",
                                        "level": 2,
                                        "primary_content": [
                                            {
                                                "text": "Fuji Electric's research and development in the field of decarbonization has changed dramatically since October 2020, when the Japanese Government set a goal of achieving carbon neutrality by 2050. Just as Western companies such as the global IT giant GAFA have announced that they will only adopt carbon-neutral energy and products, Fuji Electric's customers are beginning to do the same. Kentaro Toyama, General Manager, New Products Development Office, Corporate R&D Headquarters, explains the situation: \"Customers are moving very quickly to become carbon neutral, and in some cases the timing of product launches is about three years earlier than originally planned.\"",
                                                "url": null
                                            },
                                            {
                                                "text": "In the past, most of what customers demanded of eco-friendly products was energy-saving performance. In contrast, now \"decarbonization in different forms is being demanded in various industries and business categories,\" according to General Manager Toyama. For example, there are requests to switch from sulfur hexafluoride (SF 6 ) gas, which has high global warming potential, to dry air as an insulating medium in switchgear for substations (GIS), and requests to separate and recover CO 2 in combination with scrubbers that remove sulfur oxides (SO X ) from ship exhaust gas. The needs for decarbonization are emerging in a variety of industries and business categories, and the products and technologies required are also expanding.",
                                                "url": null
                                            }
                                        ],
                                        "secondary_content": null
                                    },
                                    {
                                        "h_title": "Organizational structure for \"co-creation\" of decarbonization-related technologies",
                                        "main_title": "Interview",
                                        "author": null,
                                        "language": "en",
                                        "level": 2,
                                        "primary_content": [
                                            {
                                                "text": "Looking at the speed of the market changes and the expansion of customers and their needs, \"it is no longer realistic for a single company to pursue the development of decarbonization-related technologies on its own\" (General Manager Toyama). For this reason, the company has made its policy of \"co-creation\" through collaboration with universities, research institutes, and partner companies in research and development clear. It is difficult to achieve carbon neutrality with a single product alone; it must be realized as a total system. It is necessary to strategically search for and acquire the missing commercial materials and technologies.",
                                                "url": null
                                            },
                                            {
                                                "text": "In this regard, Fuji Electric launched a new organization for open innovation in 2017 and has been developing its activities. The company has also been more active in the rotation of human resources, where people involved in the development of products and technologies in the R&D department are transferred to business divisions and also involved in the launch of new businesses. The New Products Development Office is working with the management and the business and sales divisions to examine how to proceed with technological development and external collaboration, and it also plays a role in developing related commercial products for each business in cooperation with the Carbon Neutral Promotion Department, which was newly established in April 2022.",
                                                "url": null
                                            }
                                        ],
                                        "secondary_content": [
                                            {
                                                "text": "Kentaro Toyama,",
                                                "url": null
                                            },
                                            {
                                                "text": "General Manager, New Products Development Office, Corporate R&D Headquarters",
                                                "url": null
                                            }
                                        ]
                                    },
                                    {
                                        "h_title": "Establishment of scenario of decarbonized society through open innovation with Kyushu University",
                                        "main_title": "Interview",
                                        "author": null,
                                        "language": "en",
                                        "level": 2,
                                        "primary_content": [
                                            {
                                                "text": "One of Fuji Electric's open innovation activities is joint research with Kyushu University, with which the company has held a comprehensive collaboration agreement since 2010. \"We have had a total of 67 collaborative projects, and we have conducted joint research on silicon carbide (SiC), a power semiconductor material, in a wide range of areas from materials to circuit configurations,\" said Shusuke Saito, Senior Chief Expert, Technological Marketing Department of the New Product Development Office. The company has produced products and technologies that are driving the growth of the power semiconductor business.",
                                                "url": null
                                            },
                                            {
                                                "text": "For the carbon neutral technologies, the company has been working with the International Institute for Carbon-Neutral Energy Research (I 2 CNER, pronounced as \"Eisner\") at Kyushu University to develop scenarios for the market and technology trends of carbon dioxide capture, utilization and storage (CCUS). When will CCUS technology be introduced to thermal power generation? On what scale will it start? Who will be the first customers? What is the financing environment for commercialization? This is an effort to analyze these scenarios, narrow down the necessary elemental technologies, and link them to joint research. \"This was Fuji Electric's first attempt to create a decarbonized society, a value system that has never been experienced before, incorporating not only technological but also economic perspectives,\" said Toyama.",
                                                "url": null
                                            }
                                        ],
                                        "secondary_content": [
                                            {
                                                "text": "Shusuke Saito,",
                                                "url": null
                                            },
                                            {
                                                "text": "Senior Chief Expert, Technological Marketing Dept, New Products Development Office, Corporate R&D Headquarters",
                                                "url": null
                                            }
                                        ]
                                    },
                                    {
                                        "h_title": "\"Membrane Separation System,\" a technology for CO 2 separation and recovery",
                                        "main_title": "Interview",
                                        "author": null,
                                        "language": "en",
                                        "level": 2,
                                        "primary_content": [
                                            {
                                                "text": "CO 2 separation and recovery technology is one of the key technologies that the company is working on in collaboration with Kyushu University and it is expected to make a significant contribution to decarbonization. The target of Fuji Electric's joint research is small-scale CO 2 separation and recovery technology that can be applied to power generation systems with an output of around 10 megawatts, cogeneration systems, ship engines, as opposed to the chemical absorption method (amine method) being promoted by heavy industry manufacturers and others for large-scale power plants. It is called a \"membrane separation system\" because it uses organic membranes. Fuji Electric is also conducting in-house research on the development of adsorbent materials and pretreatment technology to remove particulate material (PM) and other inclusions before CO 2 separation, and is aiming for practical application of the membrane separation system by combining the research results with those of Kyushu University.",
                                                "url": null
                                            },
                                            {
                                                "text": "The company is already in the process of exchanging information with ship-related customers on the processing capacity of equipment to be installed on ships, and plans to build a ground demonstration facility by the end of 2023 with a view to commercialization for use on ships. The life cycle of the system, including pre-treatment methods and equipment maintenance, will be verified according to the type of fuel. The company intends to put the membrane separation system to practical use for ships around 2025, followed by the development of membrane separation systems for cogeneration systems in factories and biomass power generation facilities. The Japanese government has set a target of capturing 30% of the global separation and recovery market by 2050, and Fuji Electric aims to capture one-fifth of that share.",
                                                "url": null
                                            }
                                        ],
                                        "secondary_content": null
                                    },
                                    {
                                        "h_title": "Contributing to SDGs",
                                        "main_title": "Interview",
                                        "author": null,
                                        "language": "en",
                                        "level": 2,
                                        "primary_content": [
                                            {
                                                "text": "Fuji Electric’s solution achieves “Stoppage Free Equipment” and contributes to the resilience of industrial and social infrastructure through responding customer’s various problems.",
                                                "url": null
                                            }
                                        ],
                                        "secondary_content": [
                                            {
                                                "text": "Research & Development",
                                                "url": "https://www.fujielectric.com/company/research_development/"
                                            }
                                        ]
                                    }
                                ],
                                "secondary_topic": [
                                    {
                                        "h_title": "Interview",
                                        "main_title": "Interview",
                                        "author": null,
                                        "language": "en",
                                        "level": 1,
                                        "primary_content": null,
                                        "secondary_content": null
                                    }
                                ]
                            }
                        }
                    ]
                }
            ]
        }
    ]
}

You can then process this data with Content Generation API and get personal insights for creating your articles. Below you can see features that can be integrated with a combination of these two APIs.

1 Get information on grammar and spelling using the Check Grammar endpoint. The ability to analyze mistakes on certain web pages can be a valuable feature for content creation tools. You can scrape data from numerous sources and give corrections for the text. For instance, it will be a great opportunity for your customers to ensure that all articles that have ever been published on their website are correct and understandable. It also can be used for educational or research platforms that collect articles and works from different domains. This way you can guarantee grammatically correct text for citation.
2 Create meta tags based on competitors’ data using the Generate Meta Tags endpoint. You can use parsed content from the competitors’ web pages as a basis for your articles. Generate Meta Tags endpoint provides you with a title and description based on the input text. These meta tags can be used for your website as well as become a brief for your articles. You can also analyze what trends are on the market now and what keywords you should use to get better conversion.
3 Rewrite the content using the Paraphrase endpoint. With its help, you can rewrite any content found on the web page from headings to conclusions. This feature will help you escape plagiarism in your articles, description, or titles. For example, it can be used for marketplaces to rewrite different product descriptions based on the text from the official supplier website. Another way to integrate this endpoint is to rewrite the meta tags parsed on your competitors’ pages. You can use the same SEO strategy without copying the actual content.

Conclusion

Unique and original content can give a great boost to your conversion rate. Nowadays, technological development allows you to automatically create content using NLP technologies and well-trained language models. The faster you work the more you produce, so businesses are turning to applications that integrate these technologies to increase productivity.

Building a text generation tool from scratch takes time, effort, and money. Therefore, companies usually opt for licensing ready-made technologies, such as APIs.

DataForSEO Content Generation API is designed to alleviate the content creation process. Our models can generate paragraphs of text in the same style as the initial target one. That is a great opportunity to improve your SEO by adding high-quality articles that will grab readers’ attention.

Don’t hesitate to try our Content Generation API to add creating unique and optimized content for web pages to the functionality of your tool!

Anna Plakhtii
No Comments

Sorry, the comment form is closed at this time.

Embed DataForSeo widget on your website


Embed code:
Preview: