Need something custom? Our REST API gives you full access to ambassadors, sales, payouts, and more. Build exactly what you need.
// Get all ambassadors
const response = await fetch(
'https://api.advocate.app/v1/ambassadors',
{
headers: {
'Authorization': 'Bearer sk_live_...',
'Content-Type': 'application/json'
}
}
);
const { data } = await response.json();
console.log(data);
// [{ id: 'amb_123', name: 'Sarah Chen', ... }]We're always adding new integrations. Let us know what tools you use and we'll prioritize accordingly.