Skip to main content
POST
/
api
/
project
/
create
Create project
curl --request POST \
  --url https://api.vidopix.com/api/project/create \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form videoUrl=https://cdn.example.com/sample.mp4 \
  --form video='@example-file'
{
  "data": {
    "taskId": "73d4fa54-b602-46f7-b803-f6710ce84344",
    "status": "pending"
  }
}

Authorizations

x-api-key
string
header
required

Body

multipart/form-data
video
file

Raw video file.

videoUrl
string<uri>

Public video URL.

Response

201 - application/json

Project accepted

data
object
required