curl -X POST \
  <BASE_URL>/sections \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "section": "Value"
}'
{
	"section": [
		"Introduction",
		"Section 1",
		"Section 2",
        "Section 3",
        "Section 4",
		"Conclusion"
	]
}
section
string

The blog topic. I don’t know why it’s not called topic.

Response

section
array

These are the sections of the blog post.

curl -X POST \
  <BASE_URL>/sections \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "section": "Value"
}'
{
	"section": [
		"Introduction",
		"Section 1",
		"Section 2",
        "Section 3",
        "Section 4",
		"Conclusion"
	]
}