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.

Body

Generate social media image post with text over gradient background.
text
string
The text to generate the meme from. Example: “Hello World”
font
string
Your desired font. Example: Arial

Response

meme_post
string
The post URL.
curl -X POST \
  <BASE_URL>/meme \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -d '{
    "text": "hello word",
    "font": "Arial, sans-serif"
}'

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