$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "template": "Amsterdam",
< "backgroundVideoUrl": "https://reel-templates.roomjs.com/bg/amsterdam.mp4",
< "audioUrl": "https://reel-templates.roomjs.com/audio/amsterdam.mp3",
< "title": "Amsterdam",
< "content": [
< "1. Amsterdam has over 100 km of canals, earning it the nickname “Venice of the North”",
< "2. There are more bicycles than people—around 1.2 bikes per resident",
< "3. The city is built on millions of wooden poles driven deep into soft soil",
< "4. Anne Frank wrote her diary while hiding in a canal house in Amsterdam",
< "5. Many canal houses lean forward to help lift goods by pulley"
< ],
< "titleFont": "Helvetica",
< "titleFontSize": "L",
< "contentFont": "Roboto",
< "contentFontSize": "S"
<}
<EOF
$curl "https://api.apify.com/v2/acts/room_js~reel-video-generator-apify-actor/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'