Everything you need to integrate with Purple Cow and get the most out of the platform.
Learn the basics of setting up your account and launching your first campaign.
Complete REST API documentation with authentication, endpoints, and examples.
Official client libraries for JavaScript, Python, and more.
Real-time event notifications for campaign updates, payments, and deliverables.
Step-by-step walkthroughs for common workflows and advanced features.
Stay up to date with the latest platform updates, fixes, and new features.
// Create a campaign
const response = await fetch('https://api.pcow.io/campaigns', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: 'Summer UGC Campaign',
budget: 5000,
type: 'VIDEO',
brief: 'Create authentic product reviews...',
}),
});
const { data } = await response.json();
console.log('Campaign created:', data.id);