content-gen is an API for generating blog posts, social captions, and marketing copy using Claude. Subscribe, get an API key, POST a brief, get content back — no prompt engineering required on your end.
Why
Building content generation into a product usually means wiring up an LLM provider, writing prompts for each content type, handling rate limits, and building billing on top of all of that. content-gen packages the generation logic behind a simple REST API so you can skip that setup.
Example
curl -X POST https://content-gen-api-csuh.onrender.com/v1/generate \
-H "Authorization: Bearer <your-api-key>" \
-H "Content-Type: application/json" \
-d '{"brief":"a new espresso blend","contentType":"social","tone":"playful"}'
Plans
- Starter — $9/mo, 100 generations
- Pro — $29/mo, 1,000 generations
Open source
The core generation library is MIT-licensed and self-hostable with your own Anthropic API key: https://github.com/blanfort77-ship-it/content-gen-saas
The hosted version above handles auth, billing, and rate limiting if you'd rather not run it yourself.
Feedback welcome, especially on pricing and what content types would be useful to add.
Top comments (0)