Introduction

Welcome to the Listen 2 My Movie Developer API. Build powerful video generation, audio processing, and distribution workflows directly into your applications.

Note: The API is currently in Beta v1.0. Backwards compatibility is guaranteed for all v1 endpoints.

Getting Started

To use the API, you'll need an API key from your dashboard. All requests must be authenticated using the Bearer token scheme.

import { L2MM } from '@l2mm/sdk';

const client = new L2MM('sk_live_...');

const video = await client.videos.create({
  prompt: "Cyberpunk city with neon lights",
  audioUrl: "https://example.com/track.mp3",
  style: "cinematic-4k"
});

console.log(video.url);

Base URL

https://api.listen2mymovie.com/v1