Give your AI agents the ability to create high-quality viral content. Integrate via REST, MCP, or our native SDKs in minutes.
Full-featured JSON API for programmatic content generation and management.
curl -X POST https://api.fabrik.ai/v1/generate \
-H "Authorization: Bearer $FABRIK_API_KEY" \
-d '{
"type": "slideshow",
"topic": "Future of AI",
"style": "minimalist"
}'Model Context Protocol integration for seamless LLM-to-Fabrik communication.
{
"mcp": "1.0",
"tool": "fabrik_create",
"args": {
"prompt": "Create a viral reel about coding tips",
"platform": "tiktok"
}
}Type-safe SDK for rapid integration into your JavaScript/TypeScript projects.
import { Fabrik } from '@fabrik/sdk';
const fabrik = new Fabrik(process.env.API_KEY);
const result = await fabrik.videos.create({
script: "Top 5 VS Code extensions...",
voice: "echo"
});Fabrik is the first content engine to natively support the Model Context Protocol. Connect your LLM directly to our generation pipeline with zero friction.
{
"mcpServers": {
"fabrik": {
"command": "npx",
"args": ["@fabrik/mcp-server"],
"env": {
"FABRIK_API_KEY": "sk_..."
}
}
}
}