Built for Developers
Integrate Content Creation Into Any Application
Leverage our robust API to build content generation directly into your own tools, CMS, or client-facing applications. With comprehensive documentation and an interactive playground, getting started is a breeze.
const runWorkflow = async () => {
const response = await fetch(
'https://keyphrase-api.dev/v1/run', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
topic: 'Multi-platform RPA management',
keyphrase_ideas: ['RPA orchestrator'],
product_url: 'https://wonderbotz.com/...',
word_count: 800
})
}
);
const data = await response.json();
return data.article;
};