Skip to main content

Documentation Index

Fetch the complete documentation index at: https://dev.contentify.app/llms.txt

Use this file to discover all available pages before exploring further.

title
string
This is your blog title.
keyword
string
This is your focus keyword.
sections
array
These are the blog sections.
focus_section
string
This is the section that you want to focus on.
previous_sections
object
These are the previous sections of your blog.
guildlines
string
Any guildlines to consider while generating the blog body. Example: No political posts

Response

body
string
This is the generated paragraph.
curl -X POST \
  <BASE_URL>/v2/body \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "title": "The Future of Technology",
    "keyword": "Innovation",
    "sections": [ "Introduction", "AI Advancements", "Impact on Society" ],

    "focus_section": "Impact on Society",
    "previous_sections": {
        "Introduction": "This is the introduction section",
        "AI Advancements": "This is the AI advancements section"
    },
    "guidelines": "No political content"
}'

{
	"body": [
        "The generated body."
    ]
}