Skip to Content
Quickstart Guide

Quickstart Guide

This guide will help you get started with the Multi-Upload Tool API in minutes.

Prerequisites

  • A Multi-Upload Tool account
  • Connected TikTok, Instagram, or YouTube accounts
  • API key from your dashboard

Step 1: Create Your Account

  1. Visit app.multi-upload-tool.com 
  2. Sign up for a new account

Step 2: 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, or YouTube).
  3. Follow the authentication flow for the selected platform.
  4. Grant necessary permissions for content upload.
  5. Note the accountId of your connected account (visible in the dashboard or via the /api/v1/accounts endpoint).

Step 3: Generate Your API Key

  1. Go to the API Keys section.
  2. Click “Generate New API Key”.
  3. Copy and save your API key securely. You won’t be able to see it again.

Step 4: Make Your First API Call

Upload a Video to TikTok

curl -X POST https://api.multi-upload-tool.com/api/v1/upload/tiktok \ -H "x-api-token: YOUR_API_KEY_HERE" \ -F "accountId=YOUR_ACCOUNT_ID" \ -F "file=@/path/to/your/video.mp4" \ -F "title=My First TikTok Video #viral" \ -F "privacy_level=PUBLIC_TO_EVERYONE"

Upload a Photo to Instagram

curl -X POST https://api.multi-upload-tool.com/api/v1/upload/instagram \ -H "x-api-token: YOUR_API_KEY_HERE" \ -F "accountId=YOUR_ACCOUNT_ID" \ -F "file=@/path/to/your/image.jpg" \ -F "caption=My First Instagram Post 📸" \ -F "media_type=IMAGE"

Next Steps