PostNitro Carousel Generator
by @iammuneeb
Generate professional social media carousel posts using the PostNitro.ai Embed API. Supports AI-powered content generation and manual content import for Link...
clawhub install postnitro-carouselπ About This Skill
name: postnitro-carousel description: Generate professional social media carousel posts using the PostNitro.ai Embed API. Supports AI-powered content generation and manual content import for LinkedIn, Instagram, TikTok, and X (Twitter) carousels. Use this skill whenever the user wants to create a carousel, social media post, slide deck for social media, multi-slide content, or mentions PostNitro. Also trigger when the user asks to turn text, articles, blog posts, or topics into carousel posts, or wants to automate social media content creation. Outputs PNG images or PDF files. Requires a PostNitro API key. homepage: https://postnitro.ai metadata: {"openclaw":{"emoji":"π ","primaryEnv":"POSTNITRO_API_KEY","requires":{"env":["POSTNITRO_API_KEY","POSTNITRO_TEMPLATE_ID","POSTNITRO_BRAND_ID","POSTNITRO_PRESET_ID"]}}}
PostNitro Carousel Generator
Generate social media carousel posts via the PostNitro.ai Embed API. Two workflows: AI generation (topic/article/X post β carousel) and content import (your own slides, with optional infographics).
Setup
1. Sign up at https://postnitro.ai (free plan: 5 credits/month) 2. Go to account settings β "Embed" β generate an API key 3. Set up your template, brand, and AI preset in the PostNitro dashboard 4. Set environment variables:
export POSTNITRO_API_KEY="your-api-key"
export POSTNITRO_TEMPLATE_ID="your-template-id"
export POSTNITRO_BRAND_ID="your-brand-id"
export POSTNITRO_PRESET_ID="your-ai-preset-id"
Base URL: https://embed-api.postnitro.ai
Auth header: embed-api-key: $POSTNITRO_API_KEY
Core Workflow
All carousel creation is asynchronous: Initiate β Poll Status β Get Output.
1. Generate a carousel with AI
curl -X POST 'https://embed-api.postnitro.ai/post/initiate/generate' \
-H 'Content-Type: application/json' \
-H "embed-api-key: $POSTNITRO_API_KEY" \
-d '{
"postType": "CAROUSEL",
"templateId": "'"$POSTNITRO_TEMPLATE_ID"'",
"brandId": "'"$POSTNITRO_BRAND_ID"'",
"presetId": "'"$POSTNITRO_PRESET_ID"'",
"responseType": "PNG",
"aiGeneration": {
"type": "text",
"context": "5 tips for growing your LinkedIn audience in 2026",
"instructions": "Professional tone, actionable advice"
}
}'
Returns { "success": true, "data": { "embedPostId": "post123", "status": "PENDING" } }. Save the embedPostId.
aiGeneration.type values:
"text" β context is the text content to turn into a carousel"article" β context is an article URL to extract and convert"x" β context is an X (Twitter) post or thread URLSee examples/generate-from-text.json, examples/generate-from-article.json, and examples/generate-from-x-post.json.
2. Import your own slide content
curl -X POST 'https://embed-api.postnitro.ai/post/initiate/import' \
-H 'Content-Type: application/json' \
-H "embed-api-key: $POSTNITRO_API_KEY" \
-d '{
"postType": "CAROUSEL",
"templateId": "'"$POSTNITRO_TEMPLATE_ID"'",
"brandId": "'"$POSTNITRO_BRAND_ID"'",
"responseType": "PNG",
"slides": [
{ "type": "starting_slide", "heading": "Your Title", "description": "Intro text" },
{ "type": "body_slide", "heading": "Key Point", "description": "Details here" },
{ "type": "ending_slide", "heading": "Take Action!", "cta_button": "Learn More" }
]
}'
Returns same response format with embedPostId.
Slide rules:
starting_slide (required)body_slide (required)ending_slide (required)heading is required on every slideSlide fields: heading (required), sub_heading, description, image (URL), background_image (URL), cta_button, layoutType, layoutConfig.
For infographic slides, set layoutType: "infographic" on body slides β replaces the image with structured data columns. See examples/import-infographics.json and references/api-reference.md for full infographics config.
3. Check post status
curl -X GET "https://embed-api.postnitro.ai/post/status/$EMBED_POST_ID" \
-H "embed-api-key: $POSTNITRO_API_KEY"
Poll every 3β5 seconds until data.embedPost.status is "COMPLETED". The logs array shows step-by-step progress.
4. Get the output
curl -X GET "https://embed-api.postnitro.ai/post/output/$EMBED_POST_ID" \
-H "embed-api-key: $POSTNITRO_API_KEY"
Returns downloadable URLs in data.result.data:
See references/api-reference.md for full response schemas.
Common Patterns
Pattern 1: LinkedIn thought leadership carousel
Generate a carousel from a topic with professional tone:
{
"aiGeneration": {
"type": "text",
"context": "5 mistakes startups make with their LinkedIn strategy and how to fix each one",
"instructions": "Professional but conversational tone. Each slide should have one clear takeaway."
}
}
Pattern 2: Repurpose a blog post
Turn an existing article into a carousel:
{
"aiGeneration": {
"type": "article",
"context": "https://yourblog.com/posts/social-media-strategy-2026",
"instructions": "Extract the 5 most actionable points. Keep slide text concise."
}
}
Pattern 3: Repurpose an X thread
Convert a viral X thread into a visual carousel:
{
"aiGeneration": {
"type": "x",
"context": "https://x.com/username/status/1234567890",
"instructions": "Maintain the original voice and key points"
}
}
Pattern 4: Data-driven infographic carousel
Import slides with structured infographic layouts:
See examples/import-infographics.json for a complete example with grid and cycle layouts.
Content Strategy Tips
Common Gotchas
1. Default responseType is PDF β always specify "PNG" explicitly if you want individual slide images.
2. heading is required on every slide β omitting it returns an error.
3. Slide structure is strict β exactly 1 starting, at least 1 body, exactly 1 ending.
4. Article type needs a URL β "article" type expects a URL as context, not plain text.
5. X type needs an X post URL β "x" type expects https://x.com/... or https://twitter.com/... as context.
6. Infographics replace images β setting layoutType: "infographic" overrides any image on that slide.
7. Cyclical infographics use first column only β columnDisplay: "cycle" ignores data in columns 2+.
8. Max 3 columns β columnCount cannot exceed 3 for infographic layouts.
9. Image URLs must be public β image and background_image fields require publicly accessible URLs.
10. Credits vary by method β AI generation costs 2 credits/slide, content import costs 1 credit/slide.
Credits & Pricing
| Plan | Price | Credits/Month | |------|-------|---------------| | Free | $0 | 5 | | Monthly | $10 | 250+ (scalable) |
Supporting Resources
Reference docs:
Ready-to-use examples:
Quick Reference
# Auth
Header: embed-api-key: $POSTNITRO_API_KEYAI generation
POST /post/initiate/generate { postType, templateId, brandId, presetId, responseType?, requestorId?, aiGeneration: { type, context, instructions? } }Content import
POST /post/initiate/import { postType, templateId, brandId, responseType?, requestorId?, slides: [{ type, heading, ... }] }Check status (poll until COMPLETED)
GET /post/status/{embedPostId}Get output (download URLs)
GET /post/output/{embedPostId}
Tips for the Agent
POSTNITRO_API_KEY, POSTNITRO_TEMPLATE_ID, POSTNITRO_BRAND_ID before calling any endpoint.POSTNITRO_PRESET_ID is only required for AI generation, not for content import."article" type, the context must be a URL β not article text. For article text, use "text" type."x" type, the context must be an X/Twitter post URL.responseType is "PDF" β always pass "PNG" if the user wants individual slide images.starting_slide β 1+ body_slide β 1 ending_slide.GET /post/status/{embedPostId} every 3β5 seconds β don't hammer the endpoint.data field contains download URLs β present them to the user directly.βοΈ Configuration
1. Sign up at https://postnitro.ai (free plan: 5 credits/month) 2. Go to account settings β "Embed" β generate an API key 3. Set up your template, brand, and AI preset in the PostNitro dashboard 4. Set environment variables:
export POSTNITRO_API_KEY="your-api-key"
export POSTNITRO_TEMPLATE_ID="your-template-id"
export POSTNITRO_BRAND_ID="your-brand-id"
export POSTNITRO_PRESET_ID="your-ai-preset-id"
Base URL: https://embed-api.postnitro.ai
Auth header: embed-api-key: $POSTNITRO_API_KEY