AI Features
Content Generation
Generate platform-optimized social media posts with AI.
Content Generation
Pro + AI
Generate social media posts from a topic, URL, or prompt using OwlStack's AI engine.
From a topic
$generated = $client->ai()->generate([
'topic' => 'PHP 8.3 new features',
'platforms' => ['twitter', 'linkedin'],
'tone' => 'professional',
]);
// Returns platform-specific content:
// Twitter: "PHP 8.3 brings typed class constants, json_validate(), and more. Here's what you need to know ๐งต"
// LinkedIn: "PHP 8.3 was released with several exciting features..."
foreach ($generated as $platform => $content) {
echo "{$platform}: {$content}\n";
}From a URL
$generated = $client->ai()->generate([
'url' => 'https://example.com/blog/php-83-features',
'platforms' => ['twitter', 'linkedin', 'facebook'],
]);OwlStack reads the page content and generates platform-optimized posts.
Options
| Option | Description | Default |
|---|---|---|
topic | Topic or prompt text | โ |
url | URL to generate from | โ |
platforms | Target platforms | All connected |
tone | Writing tone | professional |
language | Content language | en |
max_variants | Number of variants | 1 |
include_hashtags | Add hashtags | true |
include_emoji | Add emoji | true |
Tones
Available tones: professional, casual, humorous, formal, enthusiastic, informative, conversational.