AI Features
Auto Hashtags
AI-powered hashtag suggestions based on content analysis.
Auto Hashtags
Pro + AI
Let AI analyze your content and suggest relevant, trending hashtags.
Basic usage
$hashtags = $client->ai()->suggestHashtags([
'content' => 'Just shipped a new feature for our Laravel application that integrates with Stripe payments.',
]);
// Returns: ['laravel', 'php', 'stripe', 'webdev', 'payments', 'saas']With platform context
$hashtags = $client->ai()->suggestHashtags([
'content' => 'New blog post about microservices architecture',
'platform' => 'instagram',
'max_hashtags' => 15,
]);Instagram supports more hashtags, so the AI will suggest a broader set.
How it works
- AI analyzes your content for topics and themes
- Cross-references with trending hashtags on the target platform
- Filters out banned or spammy hashtags
- Ranks by relevance and potential reach
- Returns the top suggestions within your limit
Options
| Option | Description | Default |
|---|---|---|
content | The content to analyze | Required |
platform | Target platform for context | — |
max_hashtags | Maximum number to suggest | 10 |
language | Content language | en |
include_trending | Include trending tags | true |