A Make scenario that takes a daily prompt, generates an image with an AI image module, and publishes it to your social channel. Keep a steady stream of fresh visual content.
{
"version": "1.0",
"platform": "make",
"name": "AI Image Generator to Social",
"flow": [
{
"id": 1,
"module": "builtin:scheduler",
"type": "trigger",
"mapper": {
"interval": "1 day",
"time": "09:00"
}
},
{
"id": 2,
"module": "openai:createImage",
"type": "action",
"mapper": {
"model": "dall-e-3",
"prompt": "A minimalist on-brand illustration about productivity, flat design",
"size": "1024x1024"
}
},
{
"id": 3,
"module": "facebook-pages:createPhotoPost",
"type": "action",
"mapper": {
"pageId": "YOUR_PAGE_ID",
"imageUrl": "{{2.url}}",
"caption": "Daily inspiration"
}
}
]
}