In this start to finish how-to, I cover how to create fully automated blog posts using Zapier automations and ChatGPT. This video was published before Dall-E 3 was widely accessible, and as a result the blog images weren't the highest quality. Fortunately, you can make use of the Dall-E 3 API with Zapier which I show you how to do in this video: https://youtu.be/YYnntm7qhd4
Below is everything you need to follow along and make it all work for yourself!
OpenAI DALL-E 3 API docs: https://platform.openai.com/docs/api-reference/images/create
Post URL: https://api.openai.com/v1/images/generations
Request headers:
Content-Type
application/json
Body:
{
"model": "dall-e-3",
"prompt":"YOUR PROMPT HERE",
"n": 1,
"size": "1792x1024",
"style": "vivid",
"quality": "hd"
}