Quickstart Guide
Get up and running with the Multi Upload Tool API in minutes. This guide walks you through account setup to your first upload.
Prerequisites
- A Multi Upload Tool account
- At least one connected social media account (TikTok, Instagram, YouTube, etc.)
- An API key from your dashboard
Create Your Account
Visit app.multi-upload-tool.com and sign up for a new account.
Connect Your Social Media Accounts
- Navigate to the Accounts section in the dashboard.
- Click on Connect Account for your desired platform (TikTok, Instagram, YouTube, Facebook, Pinterest, Bluesky).
- Follow the OAuth authentication flow for the selected platform.
- Grant the necessary permissions for content upload.
- Note the
accountIdof your connected account (visible in the dashboard or via the/api/v1/accountsendpoint).
Generate Your API Key
- Go to the API Keys section in your dashboard.
- Click Generate New API Key.
- Copy and save your API key securely.
Store your API key in a safe place. You won’t be able to see it again after creation. If lost, you’ll need to generate a new one.
Make Your First API Call
cURL
curl -X POST https://api.multi-upload-tool.com/api/v1/upload \
-H "x-api-key: YOUR_API_KEY_HERE" \
-F "accountId=YOUR_ACCOUNT_ID" \
-F "video=@/path/to/your/video.mp4" \
-F "title=My First Video #viral" \
-F "privacy_level=PUBLIC_TO_EVERYONE"Next Steps
- Explore the API Reference for detailed endpoint documentation.
- Check Limits & Quotas for platform-specific upload caps.
- Set up Webhooks to receive real-time upload notifications.
- Use Bulk Upload to publish to multiple accounts at once.