curl -X POST \
  <BASE_URL>/related-articles \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "blog": "Sample Blog Title",
    "articles_list": ["Article 1", "Article 2", "Article 3"],
    "border-radius": "5px"
}'

{
	"key_takeaways": "<some HTML tags>"
}
blog
string

This is the original blog text.

articles_list
string

List of the articles that you want to find related blogs from. The format is not important as long as it’s a string.

border_radius
number

The images and buttons will have a border radius of this value.

Response

The related section in HTML format. The HTML response needs some clean up before you can use it in your website.

curl -X POST \
  <BASE_URL>/related-articles \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "blog": "Sample Blog Title",
    "articles_list": ["Article 1", "Article 2", "Article 3"],
    "border-radius": "5px"
}'

{
	"key_takeaways": "<some HTML tags>"
}