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",
}

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",
}