NAV
VideoEditorAI.com
shell python php javascript

Introduction

Welcome to the VideoEditorAI.com platform API!

Each feature is designed to help our users more easily create or edit videos with AI on VideoEditorAI.com"s system.

To get your API key please go to <a href="/signup/">account page</a>.

Default Base URL

The default base URL for VideoEditorAI.com API is: <b>https://api.videoeditorai.com/v1/</b>

Note: for security reasons, all VideoEditorAI.com APIs are served over HTTPS only.

Authorization

To use the VideoEditorAI.com API, you’ll need the API key that is linked to your account.

The authorization value should be send in Headers request.

Authorization: <api_key>

Create videos

Copy to Clipboard
Create videos curl -X POST \ https://api.videoeditorai.com/v1/create-video/ \ -H 'Authorization: api_key' \ -H 'Content-Type: application/json' \ -d '{ "terms": "t-rex dinasour running on the jungle", "is_sfw": true }' Get result URL curl -X POST \ https://api.videoeditorai.com/v1/results/ \ -F 'uuid=response_uuid'

Response

Copy to Clipboard
/path/to/local/result.jpg

HTTP Request

POST /create-video/

Query parameters

Parameter Type Description Example
terms Required Tell the AI what video do you want to create. t-rex dinasour running on the jungle
is_sfw Optional Set "true" if the "terms" are for adult video content true or false

Edit videos

Copy to Clipboard
Edit videos curl -X POST \ https://api.videoeditorai.com/v1/edit-video/ \ -H 'Authorization: api_key' \ -F 'files=@test_files/test.jpeg' \ -F 'terms=Make it Van Gogh Starry Night' \ -F 'is_sfw=true' Get result video curl -X POST \ https://api.videoeditorai.com/v1/results/ \ -F 'uuid=response_uuid'

Response

Copy to Clipboard
/path/to/local/result.jpg

HTTP Request

POST /edit-video/

Query parameters

Parameter Type Description Example
terms Required Tell the AI what do you want based on your video. Make it Van Gogh Starry Night
is_sfw Optional Set "true" if the "terms" are for adult video content true or false