Article Provider

1https://intelliwriter.io/api/article? title=Make Your LinkedIn Profile Work for You: The College Student's Guide

API Name

Article Generator

Description

This API is designed to automatically generate articles based on three input parameters: Title, Keywords, and Subheading. It is a valuable tool for content writers, bloggers, and businesses looking to quickly create informative articles.

Endpoint

/article

HTTP Method

GET

Parameters

  • Title (string) The title of the article.
  • Keywords (string) A list of keywords relevant to the article, separated by commas.
  • Subheading (string) A subheading or brief description of the article.

Example Request

POST /article
1{
2     "Title": "The Benefits of Healthy Eating", 
3     "Title": "health, nutrition, diet, wellness", 
4     "Subheading": "Discover the advantages of maintaining a healthy diet and lifestyle." 
5}

Response Fields

  • article (string) The generated article based on the provided Title, Keywords, and Subheading.

Status Code

  • 200 OK: The article was successfully generated.
  • 400 Bad Request: If the request is missing any of the required parameters.

Usage

  • Send a POST request to the /article endpoint with the "Title," "Keywords," and "Subheading" parameters containing the relevant information for your article.
  • The API will process the request and return a generated article that you can use for your content.

This API streamlines the process of creating informative articles, helping you save time and effort while producing content that aligns with your desired topics and keywords.

1const fetch = require('node-fetch'); // For Node.js 
2 const api_key = 'your_api_key'; 
3 const url = 'https://intelliwriter.io/api/article'; 
4 const data = { 
5           "Title": "The Benefits of Healthy Eating", 
6           "Keywords": "health, nutrition, diet, wellness", 
7           "Subheading": "Discover the advantages of maintaining a healthy diet and lifestyle." 
8          }; 
9 fetch(url, { 
10   method: 'POST', 
11   headers: { 
12     'Authorization': `Bearer ${api_key}`, 
13     'Content-Type': 'application/json', 
14   }, 
15   body: JSON.stringify(data), 
16 }) 
17 .then(response => response.json()) 
18 .then(result => console.log(result));
Logo

Intelliwriter is an AI-powered tool crafted to streamline and elevate your writing experience. Whether you're a content creator, marketer, student, or business owner, Intelliwriter is designed to transform and enhance your content creation process.

Intelliwriter.io © All rights reserved.