The Developer Platform for
Marketing Agents
One API to plug into every marketing system. Ads, social, creative editing, and auth -- all wrapped in AI-ready tools to build smart agents in days.
// 1. Unified API: Create ads on Meta & Disney+ instantly
import { Client } from '@outfox/sdk';
const client = new Client(process.env.API_KEY);
const campaign = await client.campaigns.create({
platforms: ['meta', 'disney'],
objective: 'CONVERSIONS',
budget: { amount: 500, currency: 'USD' },
creative: {
asset_id: 'video_8923',
headline: 'Build Faster with Outfox AI'
}
});
console.log(campaign.ids); // ['act_123', 'cmp_456']

