v2.0 API Reference
The Headless
Creator OS.
Bypass our dashboard entirely. Use the CreatorWand API to generate products, audit storefronts, and trigger direct publishing from your own internal tools.
POST
/v2/publishPush auto-generated products directly to connected marketplaces.
const response = await fetch('https://api.creatorwand.com/v2/publish', {
method: 'POST',
headers: {
'Authorization': 'Bearer sk_live_...',
'Content-Type': 'application/json'
},
body: JSON.stringify({
productId: "prd_987xyz",
platforms: ["gumroad", "shopify"],
autoPublish: true
})
});Response
{
"status": "success",
"data": {
"job_id": "job_456abc",
"status": "processing",
"targets": [
{ "platform": "gumroad", "status": "queued" },
{ "platform": "shopify", "status": "queued" }
]
}
}Optimization Webhooks
Get an instant ping to your server, Slack, or Discord the millisecond a product listing drops in ranking or loses a tag.
Read Webhook Docs →Headless Publishing
Use our API to bulk-generate digital products and push them directly into your custom Next.js storefront or external CMS.
Read Publishing Docs →Secure Auth Scopes
Generate granular API keys scoped specifically to 'Read-Only Analytics' or 'Write-Only Publishing' for your team.
Read Auth Docs →Integration Cookbooks
Building a custom Discord bot for real-time SEO alerts.
Automating Skool community content generation via API.
Connecting CreatorWand health alerts to Zapier.
Building a custom Dashboard using Next.js and our Stats API.
Official SDKs (Q4 2026)
@creatorwand/nodecreatorwand-python