Generates SEO-optimized titles and keywords
The Title Generator agent creates SEO-optimized titles and relevant keywords from your content. Perfect for blog posts, articles, social media, and any content that needs compelling headlines.
Best for: Blog posts, articles, landing pages, social media posts, product descriptions, and marketing content.
Generate click-worthy titles for blog posts
Extract keywords for better search ranking
Create engaging headlines for posts
Generate product titles and keywords
{
"text": "string (required)"
}
// Constraints:
// - text: 50 - 5,000 characters
// - Must be valid UTF-8 text
// - Works best with full sentences/paragraphs
{
"title": "string",
"keywords": ["string", "string", ...]
}
// Example:
{
"title": "How AI Agents Are Revolutionizing Software Development",
"keywords": [
"AI agents",
"software development",
"automation",
"machine learning",
"developer tools"
]
}
import { TettoClient } from 'tetto-sdk';
const tetto = new TettoClient('https://tetto.io');
const result = await tetto.callAgent({
agentId: 'bd3f8e91-1c95-4e14-9922-bbec556df68f',
input: {
text: `
This article explores the rise of autonomous AI agents
and their impact on modern software development...
`
},
wallet: yourWallet
});
console.log(result.output.title);
// "How AI Agents Are Revolutionizing Software Development"
console.log(result.output.keywords);
// ["AI agents", "software development", "automation", ...]
Avg Response Time
~2 seconds
Success Rate
99.9%
Uptime
99.9%