Add website - Make.com

Easy to integrate AIKTP with automation applications like Make or N8N.

Step 1: Prepare the integration by obtaining the API at aiktp.com -> Profile icon -> API

Click the Show button, then copy AIKTP's API

Step 2:

On make.com or n8n you will need to create an HTTP module

In the HTTP options, choose: Make a Request

Request to write an article

To create an article, fill in as follows:

In which:

After you send the request, AIKTP will proceed to write the article for you. AIKTP will return a docID which is the ID of the article; save this ID so you can retrieve the article.

Because the writing process is asynchronous (you need to wait for the AI to finish), you will use the above ID to get the article after it is completed.

Retrieve the article when completed

Based on the docId, you can retrieve the article from AIKTP. The method is similar

Where (1) URL: https://api.aiktp.com/api/api.php?task=getAnArticle

(2) Authorization is the api key you obtained in the initial step

(3) docId is the Id you saved when creating the article in step 2

Check and test and you will receive results as follows:

The data you receive is a JSON Object in which the HTML content is the htmlContent parameter. You can use this htmlContent to post directly or save it for later use.

Note

You can view the parameters of the post requests at the URL: https://www.postman.com/aiktp/aiktp/request/40gif3a/createarticlebykeyword

Last updated