Getting Started

Start automating your social media in three simple steps. Connect your accounts, create AI-powered content, and schedule posts across all platforms.

1

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

2

Connect Social Accounts

Securely connect your social media accounts using OAuth 2.0. We support all major platforms:

Instagram

Post photos, videos, stories, and reels. Auto-crop and optimize for feed.

X (Twitter)

Create threads, schedule tweets, and optimize hashtags for reach.

Facebook

Manage pages, groups, and ads. Cross-post to Instagram automatically.

YouTube

Upload videos, generate thumbnails, and optimize titles & descriptions.

Connection Process

  1. Navigate to Settings → Connected Accounts
  2. Click "Connect" next to your desired platform
  3. Authorize Blackspace in the OAuth popup
  4. Your account will appear as "Connected" once successful
3

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"
}

Next Steps