curl --request POST \
--url https://api.memories.ai/serve/api/v1/upload_url \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://example.com/test_video.mp4",
"callback": "https://your.app/callback",
"unique_id": "default",
"datetime_taken": "2025-10-20 11:00:00",
"camera_model": "Canon EOS 5D",
"latitude": "66.66",
"longitude": "66.66",
"tags": [
"test1",
"test2"
],
"retain_original_video": false,
"video_transcription_prompt": "Focus on the speaker and major scene changes."
}
'