DocsDevelopers
Developer overview
The API, the MCP server and the CLI, and which one to use.
Three ways to drive loudscene from code, all with the same API key and the same credits: the REST API, the MCP server for AI agents, and the loudscene command line. They are part of the Agency plan.
Which one to use#
Quick start#
- 1
Create a key
In the app, open Settings → API keys and create a key named after where it will run. Copy it: it is shown once.
- 2
Make a video from a website
curl curl https://www.loudscene.com/api/v1/videos \ -H "Authorization: Bearer $LOUDSCENE_API_KEY" \ -H "Content-Type: application/json" \ -H "Idempotency-Key: $(uuidgen)" \ -d '{"url":"https://yourbrand.com","brief":"We just launched v2: twice as fast.","format":"9:16"}' - 3
Wait for it
The answer has
status: "generating". Subscribe to thevideo.generatedwebhook, or pollGET /v1/videos/:id. - 4
Render
Call
POST /v1/videos/:id/renderswith a format, then read the MP4 URL fromGET /v1/renders/:idor therender.completedwebhook.
OpenAPI#
The full contract is an OpenAPI 3.1 document at /api/v1/openapi.json, generated from the same schemas the server validates with. Point your client generator at it.