Typefully
X / TwitterLIVEDraft X threads in your voice — not generic AI tone
Typefully is the go-to scheduler for X creators. Pair it with ContentDNA's /api/v1/generate endpoint to draft tweets and threads that actually sound like you. Pass your saved DNA profile + topic → get platform-native content with your hooks, rhythm, and power words intact.
// USE CASE
You're scheduling 5 tweets today. Instead of prompting ChatGPT and manually editing the tone, hit the ContentDNA API. Every draft already has your short-sentence rhythm, your "absolutist opener" hook, your vocabulary register. Post faster. Post consistently.
Endpoint: POST /api/v1/generate// INTEGRATION CODE
// Typefully custom action / webhook
const res = await fetch('https://contentdna.co/api/v1/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': process.env.CONTENTDNA_API_KEY,
},
body: JSON.stringify({
text: 'Why most founders burn out before product-market fit',
dnaProfile: savedDNAProfile, // from /api/v1/profile
platform: 'tweet',
count: 3,
}),
})
const { variations, voiceMatchPct } = await res.json()
// → 3 tweet drafts, all >90% voice match score