Overview
The Storyload API lets you publish videos to TikTok, YouTube and Instagram programmatically — from your own code, AI agents, bots or automations. No manual uploads, no browser.
Base URL
Section titled “Base URL”https://storyload.io/v1All requests and responses use JSON. Authenticate every request with an API key — see Authentication.
How it works
Section titled “How it works”- Create a profile in the dashboard and connect its channels (TikTok, YouTube, Instagram).
- Generate an API key in your account.
- Call
POST /v1/publicationswith a publicvideo_url. Storyload downloads the video and posts it to the profile’s connected channels.
Quick example
Section titled “Quick example”curl https://storyload.io/v1/publications \ -H "Authorization: Bearer sl_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "profile_id": "PROFILE_UUID", "video_url": "https://example.com/clip.mp4", "title": "My short" }'Next: Authentication · Publications