1. Generate AI image and post to Instagram
Automatically generate an AI image and publish it to Instagram. Workflow steps:- Trigger — Schedule (e.g., every day at 9:00 AM) or manual
- Postzee: Generate Image — prompt: your text, model: Nano Banana Pro
- Wait — 30 seconds (for generation to complete)
- Postzee: Job Status — check if image is ready
- IF — status = “success”
- Postzee: Create Post — type: “now”, channel: Instagram, media: mediaId from step 4
- Use the Job Status node in a loop to poll until
status === "success" - Pass the
mediaIdfrom Job Status to Create Post
2. RSS feed to social media
Automatically post new RSS feed items to multiple social channels. Workflow steps:- RSS Feed Trigger — watch your blog or news feed
- Postzee: Get Channels — get available channels
- Postzee: Create Post — for each new RSS item:
type: “now”content: RSS title + linkchannel: target channel ID
3. Bulk schedule weekly content
Prepare and schedule a week’s worth of content in one batch. Workflow steps:- Google Sheets — read content plan (columns: date, time, text, channel, image prompt)
- Loop — for each row:
- Postzee: Generate Image — use the image prompt
- Wait + Job Status — poll until ready
- Postzee: Create Post — type: “schedule”, date: from spreadsheet, media: generated image
4. AI image generation pipeline
Generate multiple AI images with different models and styles for A/B testing. Workflow steps:- Trigger — manual or webhook
- Split in Batches — create variations of the same prompt
- Postzee: Generate Image — different model per batch (Nano Banana Pro, FLUX, Recraft)
- Wait + Job Status — poll all jobs
- Merge — collect all generated images
- Postzee: Create Post — post the best one, or create a carousel
5. Content repurposing pipeline
Generate an AI image, then create posts for multiple platforms with platform-optimized content. Workflow steps:- Trigger — webhook with topic/prompt
- OpenAI Node — generate platform-specific captions (short for X, longer for LinkedIn)
- Postzee: Generate Image — generate the visual
- Wait + Job Status — poll until ready
- Postzee: Create Post (Instagram) — image + Instagram caption + hashtags
- Postzee: Create Post (LinkedIn) — same image + LinkedIn caption
- Postzee: Create Post (X) — same image + short tweet
Tips for building workflows
- Always poll Job Status — image and video generation is async. Never assume the media is ready immediately.
- Use the Wait node — add a 15-30 second wait before the first Job Status check to avoid unnecessary polling.
- Error handling — add an IF node after Job Status to handle
status === "failed"cases. - Dynamic channel selection — use Get Channels to build dynamic channel lists instead of hardcoding channel IDs.
- Rate limits — Postzee’s API allows 30 requests/hour for general endpoints and 10 requests/minute for AI generation. Space out batch operations accordingly.
Operations Reference
Detailed reference for all 9 operations.
API Reference
Use the REST API directly for custom integrations.