format · social-kit
Social Kit
Social media asset package
Generate a full social media asset kit: Open Graph image, Twitter card, LinkedIn banner, and square profile variants — all sized and optimized per platform.
Features
✓
Open Graph
1200×630 og:image for link previews across the web.
✓
Twitter / X card
1200×600 summary_large_image card.
✓
LinkedIn banner
1584×396 company page banner.
✓
Profile square
400×400 square for Twitter, LinkedIn, and GitHub.
✓
Consistent branding
All variants share the same prompt, style, and color scheme.
✓
Zip download
All files in one zip with a README of recommended uses.
Example Request
bash
curl -X POST https://api.assetforge.io/v1/generate \
-H "Authorization: Bearer af_live_xxxx" \
-H "Content-Type: application/json" \
-d '{
"prompt": "AssetForge launch announcement — dark theme, orange accents",
"formats": ["social-kit"],
"style": "bold",
"color_scheme": ["#FF6B1A", "#06080c", "#e8edf2"]
}'Example Response
json
{
"assets": [
{
"format": "social-kit",
"url": "https://cdn.assetforge.io/.../social-kit.zip",
"size_bytes": 512000,
"manifest": {
"og_image": "og-image.png",
"twitter_card": "twitter-card.png",
"linkedin_banner": "linkedin-banner.png",
"profile_square": "profile-square.png"
}
}
]
}