curl -X POST \
  <BASE_URL>/topics \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "topic": "sustainable living",
    "guidelines": "This is the guidelines."
}'

{
    "topic": [
		"Future of AI",
		"AI in Healthcare",
		"AI in Education",
		"AI in Finance",
		"AI in Robotics",
		"AI in Marketing"
    ]
}
topic
string

This is the topic for which you want to generate ideas.

guidelines
string

This is the guidelines.

Response

post_ideas
string

A json object containing the ideas for the topic.

curl -X POST \
  <BASE_URL>/topics \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "topic": "sustainable living",
    "guidelines": "This is the guidelines."
}'

{
    "topic": [
		"Future of AI",
		"AI in Healthcare",
		"AI in Education",
		"AI in Finance",
		"AI in Robotics",
		"AI in Marketing"
    ]
}