Get Started
Sources
Topic
Copy
curl -X POST \
<BASE_URL>/post-ideas \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"topic": "sustainable living"
}'
Copy
{
"post_ideas": {
"Digital marketing": {
"quicktips": [
"Create a strong content marketing strategy",
"Utilize social media platforms effectively"
],
"industry_myths": [
"SEO is all you need for digital marketing success",
"Email marketing is outdated"
],
"common_mistakes": [
"Ignoring data analytics",
"Not optimizing for mobile"
],
"common_questions": [
"What is digital marketing?",
"How does digital marketing differ from traditional marketing?",
"What are the key components of a successful digital marketing strategy?"
],
"actionable_systems": [
"Developing a content calendar",
"Optimizing social media profiles"
]
}
}
}
Body
This endpoint will generate a list of ideas for a topic.
This is the topic for which you want to generate ideas.
Response
A json object containing the ideas for the topic.
Copy
curl -X POST \
<BASE_URL>/post-ideas \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"topic": "sustainable living"
}'
Copy
{
"post_ideas": {
"Digital marketing": {
"quicktips": [
"Create a strong content marketing strategy",
"Utilize social media platforms effectively"
],
"industry_myths": [
"SEO is all you need for digital marketing success",
"Email marketing is outdated"
],
"common_mistakes": [
"Ignoring data analytics",
"Not optimizing for mobile"
],
"common_questions": [
"What is digital marketing?",
"How does digital marketing differ from traditional marketing?",
"What are the key components of a successful digital marketing strategy?"
],
"actionable_systems": [
"Developing a content calendar",
"Optimizing social media profiles"
]
}
}
}