Early Access

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.

12+
Endpoints
99.9%
Uptime
<200ms
Latency
🚀 Early Access

Our API is currently in private beta. Request early access and we'll get you set up within 48 hours.

Request API Access

API Docs

4 capabilities

Video 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.

example.ts
REST
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);
});
Coming Soon

SDKs & Libraries

Official client libraries for Node.js, Python, and PHP are in development.

Node.jsPythonPHP