Video Generation
Runway ML
premiumRunway ML is an enterprise-grade video generation provider offering Speech Synthesis, Image Generation, Video Generation and 2 more through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (5)
Quick start
Use Runway ML through Alfred's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.alfred-ai.app/v1/execute \
-H "Authorization: Bearer $ALFRED_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "runwayml",
"capability": "tts.synthesize",
"input": { "prompt": "Hello from Runway ML!" }
}'TypeScript
import { Alfred } from '@alfred/core';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const result = await alfred.execute({
provider: 'runwayml',
capability: 'tts.synthesize',
input: { prompt: 'Hello from Runway ML!' },
});
console.log(result.output);