Connect your stack
Publish directly to WordPress, Shopify, and more. No copy-paste. No formatting. Just click publish.
WordPress
Publish directly to your WordPress sites with our official plugin
- One-click publish from Woord
- Auto-generate featured images
- SEO meta title & description sync
- Category & tag mapping
- Schedule posts for later
- Draft or publish status control
Shopify
Create blog content that drives traffic to your store
- Publish to Shopify Blog
- Product mention integration
- Auto-generate blog images
- SEO optimization for store
- Content calendar sync
- Multi-store support
Webflow
Coming soon - Native CMS integration for Webflow sites
- CMS collection publishing
- Dynamic field mapping
- Multi-reference support
- Asset upload to Webflow CDN
- Draft & staging workflows
How it works
Connect once, publish forever
Connect
Install the plugin or app and authenticate with your Woord account
Configure
Map your content structure - categories, tags, templates
Publish
Push content directly from Woord to your platform in one click
Build your own integration
Our REST API and webhooks let you connect Woord to any platform. Available on Pro and Business plans.
REST API
Full CRUD operations for articles, keywords, and workspaces
Webhooks
Real-time notifications for article status changes
SDKs
Official libraries for Node.js, Python, and PHP
// Create an article via API
const article = await fetch(
'https://api.woord.ai/v1/articles',
{
method: 'POST',
headers: {
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
keyword: 'ai content marketing',
tone: 'professional',
length: 'long_form',
}),
}
);
// Publish to WordPress
await fetch(
`https://api.woord.ai/v1/articles/${article.id}/publish`,
{
method: 'POST',
headers: {
'Authorization': `Bearer ${apiKey}`
},
body: JSON.stringify({
platform: 'wordpress',
site_id: 'my-blog',
status: 'publish',
}),
}
);Need a different integration?
We're always expanding our integrations. Let us know what you need.
Request Integration