Node.js Integration

Node.js Instagram Reels API

The easiest way to automate Instagram Reels uploads with Node.js. Scale your content distribution with a single API call.

Auto-resize for Reels format
Share to feed toggle
Caption & hashtags
Thumbnail selection
example.js
const axios = require('axios');

const response = await axios.post(
  'https://api.xenonflare.com/media/videos',
  {
    video_url: 'https://cdn.xenonflare.com/v/reel.mp4',
    platforms: ['instagram'],
    instagram: { share_to_feed: true }
  },
  { headers: { 'X-API-Key': 'YOUR_KEY' } }
);

console.log(response.data); // { id: '...', status: 'published' }

Common Questions

Does this support Stories?

We currently specialise in Reels and Feed posts. Stories support is on the roadmap.

Is there a rate limit?

Free plans have a daily limit. Pro and Enterprise plans unlock much higher throughput.