Text Rewriter API

Text Rewriter API

Text Rewriter API allows you to automatically rephrase text, preserving its meaning while changing its wording. The API supports multiple languages and can be integrated with any application for content generation, SEO and plagiarism prevention

API description

About the API:

Our Text Rewriter API is a powerful tool that allows you to automatically rephrase text, preserving its meaning while changing its wording. The API supports multiple languages and can be integrated with any application for content generation, SEO, and plagiarism prevention.

The API uses advanced natural language processing algorithms to analyze the input text and generate new, unique variations while preserving the original meaning of the text. This makes it an ideal tool for a variety of use cases such as content creation, SEO, and plagiarism prevention.

The API can be integrated into content management systems, blog platforms, and other applications to automatically generate unique variations of existing content. This can help to improve search engine rankings and avoid plagiarism issues.

In addition, the API can be used for content creation, such as generating new variations of product descriptions or other marketing materials. It can also be used for SEO purposes, such as creating unique versions of meta descriptions and other on-page elements.

Overall, our Text Rewriter API is a valuable tool for businesses and individuals looking to generate unique variations of existing text. It can be used for a variety of purposes such as content creation, SEO and plagiarism prevention, and supports multiple languages.

 

What this API receives and what your API provides (input/output)?

Pass the text that you want to rewrite, and receive a JOB ID that you can use to get the response later.
 

What are the most common uses cases of this API?

  1. Content creation: Use the API to automatically generate unique variations of existing text, such as product descriptions or blog articles, for use in content marketing and website optimization.

  2. SEO: Use the API to create unique versions of meta descriptions and other on-page elements, helping to improve search engine rankings and drive more traffic to your website.

  3. Plagiarism prevention: Use the API to rephrase existing text, ensuring that your content is original and avoiding plagiarism issues.

  4. Article spinning: Use the API to automatically generate multiple versions of an article for use in link building and other SEO strategies.

  5. Translation: Use the API to rephrase text in a different language, allowing you to communicate with a wider audience or expand your business in new markets.

  6. Text summarization: Use the API to automatically summarize a long text in a short version while preserving the main ideas of the original text.

Are there any limitations to your plans?

Besides API call limitations per month, there are no other limitations.

API Documentation

Endpoints


The Plaraphy API is a tool that uses cutting-edge AI to rewrite any text content or find new ways to express what you want to say. 

Pass the text you want to rewrite or get new ideas from the given text.

This Endpoint will provide you with a JOB ID. That JOB ID will be used on the "retrieve" endpoint that will allow you to get the result from this JOB. 



                                                                            
POST https://zylalabs.com/api/22/text+rewriter+api/83/paraphrase
                                                                            
                                                                        

Paraphrase - Endpoint Features
Object Description
text [Required] Insert here the text you want to rewrite or rephrase.
unique [Optional] Rewrite in a way that passes online plagiarism tests. 1= true 0=false
mode [Optional] [normal, fluent, standard, creative] Rewriting mode. The default mode is "normal". We recommend using "standard", or "fluent"
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {"message":"The GET method is not allowed, please use POST to query our API.","success":true}
                                                                                                                                                                                                                    
                                                                                                    

Paraphrase - CODE SNIPPETS


curl --location --request POST 'https://zylalabs.com/api/22/text+rewriter+api/83/paraphrase?text=Once in a quaint countryside, there lived Lily, an innocent lamb. With her pristine white coat and curious eyes, she brought joy to the farmer's family who cared for the sheep. Lily's days were filled with simple pleasures—chasing butterflies and frolicking with her fellow lambs. One day, she heard a wise old owl's melodic voice. Intrigued, she asked, 'Why do you sit alone and thoughtful?' The owl replied, 'I observe life's mysteries—the changing seasons, creatures, and the universe.' Lily asked, 'What are mysteries?' The owl explained, 'They're the questions that make us wonder.' Lily pondered, 'What's the greatest mystery?' The owl said, 'Life itself—the miracle of birth, growth, and nature's beauty.' Lily appreciated life's simple joys—the sun's warmth, sweet grass, and laughter. She shared wisdom with her flock, and they saw the world anew. As seasons passed, Lily, now a graceful ewe, never forgot life's wonder. In the countryside, she cherished life's mysteries with an open heart&unique=1&mode=fluent' --header 'Authorization: Bearer YOUR_API_KEY' 

    

Get the sentiment that any phrase or expression contains.

Do you want to check if the text is Neutral, somewhat positive or if it's a negative sentence? Use this endpoint. 

 

Endpoint JSON response example (positive):

{

    "sentiments_detected": [

        {

            "neg": 0,

            "neu": 0.764,

            "pos": 0.236,

            "compound": 0.5719,

            "sentence": "After some time, I remembered what she said, and all of a sudden I'm happy."

        }

    ],

    "sentiment": "positive",

    "success": true

}
 
 

Endpoint JSON response example (negative):

{

    "sentiments_detected": [

        {

            "neg": 0.274,

            "neu": 0.726,

            "pos": 0,

            "compound": -0.7518,

            "sentence": "My team lost this weekend, I bet a lot of money on them, my wife is going to be so mad."

        }

    ],

    "sentiment": "negative",

    "success": true

}
 
 



                                                                            
POST https://zylalabs.com/api/22/text+rewriter+api/91/sentiment+analyzer
                                                                            
                                                                        

Sentiment Analyzer - Endpoint Features
Object Description
text [Required] Pass the sentence whose sentiment you want to detect.
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {"sentiments_detected":[{"neg":0.274,"neu":0.726,"pos":0,"compound":-0.7518,"sentence":"My team lost this weekend, I bet a lot of money on them, my wife is going to be so mad."}],"sentiment":"negative","success":true}
                                                                                                                                                                                                                    
                                                                                                    

Sentiment Analyzer - CODE SNIPPETS


curl --location --request POST 'https://zylalabs.com/api/22/text+rewriter+api/91/sentiment+analyzer?text=After some time, I remembered what she said, and all of a sudden I'm happy.' --header 'Authorization: Bearer YOUR_API_KEY' 

    

With this Endpoint, you will be able to summarize your text. Select what percentage of the words you want to summarize and you will be retrieved with the general idea of your text or article! 

 



                                                                            
POST https://zylalabs.com/api/22/text+rewriter+api/131/text+summarizer
                                                                            
                                                                        

Text Summarizer - Endpoint Features
Object Description
text [Required] The text string you want to summarize.
output_percent [Required] Percent of the original text to be returned. Values range from 10 to 100
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {"message":{"output_percent":["The output percent must be a number.","The output percent must be at least 10."]},"success":false}
                                                                                                                                                                                                                    
                                                                                                    

Text Summarizer - CODE SNIPPETS


curl --location --request POST 'https://zylalabs.com/api/22/text+rewriter+api/131/text+summarizer?text=In the modern digital environment, content that is quick, comprehensible, and simple to read is essential. You want your material to be reader-friendly whether you are presenting a learning module for a class, writing about a product or service, or simply journaling your most recent exploits. Many individuals prefer things to be tidy, succinct, and straightforward. So, tools for paraphrasing can be useful in this situation.&output_percent=40' --header 'Authorization: Bearer YOUR_API_KEY' 

    

With the JOB ID generated on the "Paraphrase" endpoint, you will be able to get the response from that rewrite. 

 



                                                                            
GET https://zylalabs.com/api/22/text+rewriter+api/482/retrieve+response
                                                                            
                                                                        

Retrieve Response - Endpoint Features
Object Description
job_id [Required] The JOB ID generated on "Paraphrase" endpoint.
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {"original":"Feel free to check what you can achieve with our tool. Excellent for paraphrasing and get new ideas.","rewrited":"It's a good idea to check what you can achieve with our tool. It's great for getting new ideas.","rewrited_lang":"It's a good idea to check what you can achieve with our tool. It's great for getting new ideas.","success":true,"job_id":null}
                                                                                                                                                                                                                    
                                                                                                    

Retrieve Response - CODE SNIPPETS


curl --location --request GET 'https://zylalabs.com/api/22/text+rewriter+api/482/retrieve+response?job_id=e6fe7436-2230-408a-b338-cb4095f28c2e' --header 'Authorization: Bearer YOUR_API_KEY' 

    

API Access Key & Authentication

After signing up, every developer is assigned a personal API access key, a unique combination of letters and digits provided to access to our API endpoint. To authenticate with the Text Rewriter API REST API, simply include your bearer token in the Authorization header.

Headers

Header Description
Authorization [Required] Should be Bearer access_key. See "Your API Access Key" above when you are subscribed.


Simple Transparent Pricing

No long term commitments. One click upgrade/downgrade or cancellation. No questions asked.

🚀 Enterprise
Starts at $10,000/Year

  • Custom Volume
  • Dedicated account manager
  • Service-level agreement (SLA)

Customer favorite features

  • ✔︎ Only Pay for Successful Requests
  • ✔︎ Free 7-Day Trial
  • ✔︎ Multi-Language Support
  • ✔︎ One API Key, All APIs.
  • ✔︎ Intuitive Dashboard
  • ✔︎ Comprehensive Error Handling
  • ✔︎ Developer-Friendly Docs
  • ✔︎ Postman Integration
  • ✔︎ Secure HTTPS Connections
  • ✔︎ Reliable Uptime

The Text Rewriter API uses advanced natural language processing algorithms to analyze the input text and generate new, unique variations while preserving the original meaning. It rephrases the text by changing its wording while ensuring that the overall message remains intact.

The API can be used for various purposes, including content generation, SEO optimization, and plagiarism prevention. You can integrate it into your applications, content management systems, or blog platforms to automatically generate unique variations of existing content. It helps in improving search engine rankings, avoiding duplicate content issues, and creating diverse versions of marketing materials.

Yes, the API supports multiple languages. You can pass text in different languages to the API for rewriting, allowing you to generate unique variations in various language contexts.

To use the API, you need to pass the text you want to rewrite as input. The API will provide you with a JOB ID as a response. You can then use this JOB ID to retrieve the rewritten text later. The output of the API is the rephrased version of the input text while preserving its original meaning.

The Text Rewriter API utilizes advanced natural language processing algorithms to generate unique variations while preserving meaning. However, it's important to note that the accuracy and grammatical correctness of the rewritten text may vary depending on the complexity of the input and the nuances of the language. It's always recommended to review and revise the generated output to ensure it meets your specific requirements and quality standards.

Zyla API Hub is, in other words, an API MarketPlace. An all-in-one solution for your developing needs. You will be accessing our extended list of APIs with only your user. Also, you won't need to worry about storing API keys, only one API key for all our products is needed.

Prices are listed in USD. We accept all major debit and credit cards. Our payment system uses the latest security technology and is powered by Stripe, one of the world’s most reliable payment companies. If you have any trouble with paying by card, just contact us at [email protected]

Sometimes depending on the bank's fraud protection settings, a bank will decline the validation charge we make when we attempt to be sure a card is valid. We recommend first contacting your bank to see if they are blocking our charges. If more help is needed, please contact [email protected] and our team will investigate further

Prices are based on a recurring monthly subscription depending on the plan selected — plus overage fees applied when a developer exceeds a plan’s quota limits. In this example, you'll see the base plan amount as well as a quota limit of API requests. Be sure to notice the overage fee because you will be charged for each additional request.

Zyla API Hub works on a recurring monthly subscription system. Your billing cycle will start the day you purchase one of the paid plans, and it will renew the same day of the next month. So be aware to cancel your subscription beforehand if you want to avoid future charges.

Just go to the pricing page of that API and select the plan that you want to upgrade to. You will only be charged the full amount of that plan, but you will be enjoying the features that the plan offers right away.

Yes, absolutely. If you want to cancel your plan, simply go to your account and cancel on the Billing page. Upgrades, downgrades, and cancellations are immediate.

You can contact us through our chat channel to receive immediate assistance. We are always online from 9 am to 6 pm (GMT+1). If you reach us after that time, we will be in contact when we are back. Also you can contact us via email to [email protected]

 Service Level
100%
 Response Time
1,759ms

Useful links:


Category:


Tags:


Related APIs