curl -X POST \
  <BASE_URL>/key-takeaways \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "text": "Sample Key Takeaways Text"
}'

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

This is your blog text.

Response

key_takeaways
string

This is the generated html for your key takeaways section. It does need some clean up before you can use it on your blog.

curl -X POST \
  <BASE_URL>/key-takeaways \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "text": "Sample Key Takeaways Text"
}'

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