I’m trying to upload a file via API. Here is the documentation: muse.ai | apis
Request should look like:
curl -X POST
-H “Key: YOUR_KEY”
-F “file=@The_Solar_System.mp4”
https://muse.ai/api/files/upload
And this is what I have (key removed for privacy):
Yet I am receiving the error:
There was an issue setting up your call.
Raw response for the API
Status code 400
{“error”:“missing_file”}
I have a feeling it has to do with the way the file is called, but looking for someone else’s input.
Its my first time with cURL and it was going great until this file upload!