#
# # # # #

AI Blog Content Generator API

API:Generative AI

US$8US$11

  • Generate full piece of article that includes topic ideas, openings, table of content, each body section, images. It automatically returns the article content generated by Easy2Digital AI integrated system which integrates with multi LLM modules (Palm, Llama, Claude, GPT3.5, GPT3, GPT-J, GPT NEOX, etc). Topic ideas have 10 pieces, and the rest of each part of the content has max. 200 characters. The module is for English, Japanese, Simplified Chinese, Traditional Chinese. It also provides 5 endpoints separately to generate each part respectively.

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


AI Blog Content Generator API Applied to Use in Google Sheets.

1 Mins Video Onsite App Demo


AI Blog Content Generator API Applied in BuyfromLo Onsite App.

Features

  • Generate full piece of article that includes topic ideas, openings, table of content, each body section, images
  • It automatically returns the article content generated by Easy2Digital AI integrated system which integrates with multi LLM modules (Palm, Llama, Claude, GPT3.5, GPT3, GPT-J, GPT NEOX, etc)
  • Topic ideas have 10 pieces, and the rest of each part of the content has max. 200 characters. The module is for English, Japanese, Simplified Chinese, Traditional Chinese
  • It also provides 5 endpoints separately to generate each part respectively.

API Endpoint Specifications

  • Endpoint Path: /api/3/blogchain
  • Type of Data: JSON & 1 Article per min (Less than 3000 EN Characters)
  • Data Source: BuyfromLo, Llama, Palm, Claude, OpenAI
  • Request Limit: 100,000 tokens/month (Approximate 73,000 English words)
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

AI Blog Content Generator API Endpoint Basic Info

API Endpoint Path

required

AI Blog Content Generator API

https://www.buyfromlo.com/api/3/blogchain


Call Method

Required

POST

Type of Data Return

JSON

JSON output structured data for AI blog content


Available API Arguments & Parameters

Token

required

BUYFROMLO API token. Subscription API is available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well

originalContent

required

Input the main theme or topic regarding this blog content

topic_name

required

Set who is writing this blog article, such as Lawyer, Marketer, Engineer, etc

role

required

Enter an expected tone of this article, such as positive, suspicious, etc


language

Optional

input the outcome content language. Current available language has en, ja, sc, fr, ru

llmModel

Optional

For free api trial users only, input a LLM model. Current avalable model has openai, hugging face version llama

apikey

Optional

For free api trial users only, input a LLM api key. Current available model has openai, hugging face api key


AI Blog Content Generator API

https://www.buyfromlo.com/api/3/blogchain


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://www.buyfromlo.com/api/3/blogchain"

## Required Arguments & Parameters ##

originalContent = "raw content materials or context for reference"
topic_name = "topic idea"
role = "who writes this content"
tableofcontentquantity = "how many subtitles are included. Max. is 8 subtitles"

## Optional Arguments & Parameters ##
language = "Input a language. Default is en"

## Optional and For free trial users only ##
llmModel = "Input openAI or hugging face llama. Paid users unnecessarily input this value."
apikey = "Input openai api key or hugging face api key. Paid users unnecessarily input this value."

## Call the api ##
response = requests.post(apiendpoint + "?token=" + token, json={"originalContent":"", "topic_name":"", "role": "", "tableofcontentquantity": "", "language":language, "llmModel": llmModel, "apikey":apikey})
print(response.status)
print(response.json())
                        

JSON Response Sample


{
    "Totaltokenused":"",
    "Title":"",
    "excerpt":"",
    "table of contents": [],
    "content body": []
}