curl -X POST \
  <BASE_URL>/blog-image \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "guidelines": "No political content",
    "theme": "light blue",
    "text": "hello word"
}'

{
  "generated_image": "https://ai.contentify.app/some-image.jpg",
}
text
string
Source text to generate blog post image from.
guildlines
string
Any guildlines to consider while generating the post. Example: No political posts
theme
string
Your desired theme for image generation. Example: light blue

Response

generated_image
string
The blog image URL.
curl -X POST \
  <BASE_URL>/blog-image \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "guidelines": "No political content",
    "theme": "light blue",
    "text": "hello word"
}'

{
  "generated_image": "https://ai.contentify.app/some-image.jpg",
}