Getting Started
Start automating your social media in three simple steps. Connect your accounts, create AI-powered content, and schedule posts across all platforms.
Create Your Account
Sign up for a free account to get started. Choose from our flexible pricing plans:
Starter
Free forever
5 AI agents, 1K requests/month
Pro
$29/month
50 agents, 50K requests/month
Enterprise
$99/month
Unlimited agents & requests
Connect Social Accounts
Securely connect your social media accounts using OAuth 2.0. We support all major platforms:
Post photos, videos, stories, and reels. Auto-crop and optimize for feed.
X (Twitter)
Create threads, schedule tweets, and optimize hashtags for reach.
Manage pages, groups, and ads. Cross-post to Instagram automatically.
YouTube
Upload videos, generate thumbnails, and optimize titles & descriptions.
Connection Process
- Navigate to Settings → Connected Accounts
- Click "Connect" next to your desired platform
- Authorize Blackspace in the OAuth popup
- Your account will appear as "Connected" once successful
Create Your First AI Post
Use our AI agents to generate engaging content in seconds:
Generate Content
Use AI to create captions, hashtags, and images
// Example: Generate Instagram caption
POST /api/v1/content/generate
{
"platform": "instagram",
"type": "caption",
"prompt": "Launch day for our new product",
"tone": "exciting",
"hashtags": true
}Schedule Posts
Publish immediately or schedule for optimal engagement
// Example: Schedule a post
POST /api/v1/posts/schedule
{
"platforms": ["instagram", "x", "facebook"],
"content": {
"text": "Check out our new product! 🚀",
"image": "https://...",
"hashtags": ["#launch", "#innovation"]
},
"schedule_time": "2025-10-06T10:00:00Z"
}Track Performance
Monitor engagement, reach, and conversions
// Example: Get analytics
GET /api/v1/analytics/posts/{post_id}
Response:
{
"views": 15420,
"likes": 892,
"shares": 124,
"engagement_rate": 6.8,
"best_performing_platform": "instagram"
}