POST
/
v1
/
files
/
store-file
FFprobe and store a file
curl --request POST \
  --url https://api.rendi.dev/v1/files/store-file \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "file_url": "https://storage.rendi.dev/sample/sample.avi"
}'
{
  "file_id": "123e4567-e89b-12d3-a456-426614174000"
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
file_url
string
required

URL to the publicly accessible file. You can use public file urls, google drive, dropbox, rendi stored files, s3 stored files, etc. as long as they are publicly accessible.

Examples:

"https://storage.rendi.dev/sample/sample.avi"

Response

Successfully submitted file for FFprobe and storage

file_id
string
required

Unique identifier for the stored file

Examples:

"987fcdeb-a89b-43d3-b456-789012345678"