ContentForge API Skill
Generate professional content using VCG's ContentForge API - a template-based content generation service with 100+ content templates.
Quick Start
- Get API Key: Help user sign up for free ContentForge API key
- Store Key: Save the key securely
- Generate Content: Use templates for blogs, marketing copy, articles, etc.
API Key Signup
Step 1: Get User's Email
Ask the user for their email address to create a free ContentForge account.
Step 2: Sign Up via API
curl -X POST https://contentforge.vosscg.com/v1/keys \
-H "Content-Type: application/json" \
-d '{"email":"user@example.com"}'
Expected Response:
{
"api_key": "cf_1234567890abcdef",
"message": "API key created successfully",
"tier": "free",
"daily_limit": 100
}
Step 3: Store the API Key
Save the API key securely for future use. Instruct the user to keep it safe.
Available Templates & Usage
Get Available Templates
curl -H "X-API-Key: cf_1234567890abcdef" \
https://contentforge.vosscg.com/v1/templates
Generate Content Examples
Blog Post
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: cf_1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"template": "blog_post",
"inputs": {
"topic": "AI in Marketing",
"tone": "professional",
"length": "medium",
"keywords": ["artificial intelligence", "marketing automation", "personalization"]
}
}'
Marketing Copy
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: cf_1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"template": "ad_copy",
"inputs": {
"product": "SaaS Analytics Platform",
"audience": "small business owners",
"cta": "Start Free Trial",
"tone": "persuasive"
}
}'
Product Description
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: cf_1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"template": "product_description",
"inputs": {
"product_name": "Wireless Headphones",
"features": ["noise canceling", "30hr battery", "bluetooth 5.0"],
"target_audience": "professionals",
"style": "benefits-focused"
}
}'
Expected Response Format:
{
"content": "Generated content here...",
"template_used": "blog_post",
"word_count": 524,
"tokens_used": 1,
"remaining_daily": 99
}
Popular Templates
blog_post- Full blog articles with SEO optimizationad_copy- Social media and digital advertising copyproduct_description- E-commerce product descriptionsemail_subject- Email marketing subject linesnewsletter- Newsletter content and formattingpress_release- Professional press releaseslanding_page- Landing page copy and headlinessocial_post- Social media posts for various platformsmeta_description- SEO meta descriptionscase_study- Customer case study content
Error Handling
Common error responses:
401 Unauthorized- Invalid or missing API key429 Too Many Requests- Daily limit exceeded400 Bad Request- Invalid template or missing required inputs
Pricing & Limits
Free Tier:
- 100 requests per day
- Access to all templates
- No credit card required
Paid Plans:
- Upgrade at https://vosscg.com/forges for higher limits
- Premium templates and customization
- Priority support and faster generation
Best Practices
- Template Selection: Choose the right template for your content type
- Input Quality: Provide detailed, specific inputs for better results
- Tone Consistency: Use consistent tone parameters across related content
- Keyword Integration: Include relevant keywords for SEO-optimized content
- Batch Processing: Generate multiple pieces at once for efficiency
Integration Examples
OpenClaw Agent Workflow
# 1. Help user get API key
curl -X POST https://contentforge.vosscg.com/v1/keys -d '{"email":"user@domain.com"}'
# 2. Store the returned API key securely
# 3. Generate content based on user request
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: [USER_API_KEY]" \
-d '{"template":"blog_post", "inputs":{...}}'
# 4. Return the generated content to the user
When a user asks for content generation, blog writing, marketing copy, or any text creation task, use this skill to leverage ContentForge's professional templates and AI-powered generation capabilities.