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
- Visit app.multi-upload-tool.com
- Sign up for a new account
Step 2: Connect Your Social Media Accounts
- Navigate to the Accounts section in the dashboard.
- Click on “Connect Account” for your desired platform (TikTok, Instagram, or YouTube).
- Follow the authentication flow for the selected platform.
- Grant necessary permissions for content upload.
- Note the
accountIdof your connected account (visible in the dashboard or via the/api/v1/accountsendpoint).
Step 3: Generate Your API Key
- Go to the API Keys section.
- Click “Generate New API Key”.
- 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
- Check out our API Reference for detailed endpoint documentation.
- Learn about Rate Limits & Quotas.