API & Integrations
Automate your real estate video workflow with the ImmoStory API. Built for agencies and platforms that want to integrate AI video generation directly into their systems.
Our API is currently in private beta. Request early access and we'll get you set up within 48 hours.
API Docs
4 capabilitiesVideo Generation
Generate professional property videos from a listing URL or structured data. Full control over style, music, and branding.
Webhooks
Receive real-time notifications when videos are ready, published, or when errors occur.
Multi-Tenant
Manage multiple brands or offices under one account. Each tenant gets their own branding, credits, and settings.
Social Publishing
Publish videos directly to Instagram, Facebook, YouTube, and TikTok via API. Schedule and manage posts programmatically.
const client = new ImmoStoryClient({
apiKey: process.env.IMMO_API_KEY,
});
const video = await client.videos.create({
listingUrl: 'https://immoweb.be/listing/123',
style: 'modern',
language: 'nl',
});
console.log(video.status);
// "processing"
// Webhook fires when ready:
webhook.on('video.ready', (v) => {
console.log(v.downloadUrl);
});SDKs & Libraries
Official client libraries for Node.js, Python, and PHP are in development.

