Python Integration

Python Multi-Platform Posting API

The easiest way to post one video to TikTok, Instagram, YouTube, and LinkedIn simultaneously using Python. Scale your content distribution with a single API call.

4+ platforms simultaneously
Platform-specific settings
Unified analytics
One API key
example.py
import requests

# Post to ALL platforms with one API call
response = requests.post(
    "https://api.xenonflare.com/media/videos",
    headers={"X-API-Key": "YOUR_KEY"},
    json={
        "video_url": "https://cdn.xenonflare.com/v/video.mp4",
        "platforms": ["tiktok", "instagram", "youtube", "linkedin"],
        "title": "My viral video 🚀",
        "description": "Automated with XenonFlare API"
    }
)

Common Questions

Can I customize settings per platform?

Absolutely. Pass platform-specific keys (e.g. 'tiktok', 'instagram') in the body for granular control.

What if one platform fails?

XenonFlare posts to each platform independently and reports per-platform status in the response.