Skip to Content
Quickstart Guide

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

  1. Navigate to the Accounts section in the dashboard.
  2. Click on Connect Account for your desired platform (TikTok, Instagram, YouTube, Facebook, Pinterest, Bluesky).
  3. Follow the OAuth authentication flow for the selected platform.
  4. Grant the necessary permissions for content upload.
  5. Note the accountId of your connected account (visible in the dashboard or via the /api/v1/accounts endpoint).

Generate Your API Key

  1. Go to the API Keys section in your dashboard.
  2. Click Generate New API Key.
  3. 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 -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.