Get Started
Our AI Tools
API References
- AI Clip
- AI Edit
- AI Subtitling
- AI BGM
- AI Broll
- AI Text To Voice
- AI Text To Video
Utilities
AI Edit
Request
Base URL: https://mango.quickreel.io/api/v2
POST
/
edit
Copy
curl --request POST \
--url https://mango.quickreel.io/api/v2/edit \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"videoUrl": "https://www.youtube.com/watch?v=eY4pgeNBhk4",
"language": "english",
"webhookUrl": "https://webhook-test.com/05674b0b229c29199fec105309a00e16",
"template": "cinematic",
"brollFrequency": "low",
"subtitleHighlightColor": "#000000",
"title": "My Video",
"duration": 10,
"additionalFeatures": {
"addBgm": "false",
"removeFillerWords": "false",
"removeSilenceParts": "false"
},
"additionalSettings": {
"soundEffectsVolume": "0.5",
"applySpearkerDetection": "true"
},
"trim": {
"start": 5,
"end": 10
},
"bgVideoSettings": {
"type": "satisfying",
"url": "https://www.samplelib.com/lib/preview/mp4/sample-30s.mp4",
"shape": "rectangle",
"position": "top-right",
"stroke": {
"color": "#000000",
"width": 10
}
}
}'
Copy
{
"status": "created",
"message": "project created successfully",
"projectId": "667bbc6973e392d3f7f6f620"
}
Authorizations
Body
application/json
Request payload for video editing
The body is of type object
.
Response
201
application/json
Request created successfully
The response is of type object
.
Copy
curl --request POST \
--url https://mango.quickreel.io/api/v2/edit \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"videoUrl": "https://www.youtube.com/watch?v=eY4pgeNBhk4",
"language": "english",
"webhookUrl": "https://webhook-test.com/05674b0b229c29199fec105309a00e16",
"template": "cinematic",
"brollFrequency": "low",
"subtitleHighlightColor": "#000000",
"title": "My Video",
"duration": 10,
"additionalFeatures": {
"addBgm": "false",
"removeFillerWords": "false",
"removeSilenceParts": "false"
},
"additionalSettings": {
"soundEffectsVolume": "0.5",
"applySpearkerDetection": "true"
},
"trim": {
"start": 5,
"end": 10
},
"bgVideoSettings": {
"type": "satisfying",
"url": "https://www.samplelib.com/lib/preview/mp4/sample-30s.mp4",
"shape": "rectangle",
"position": "top-right",
"stroke": {
"color": "#000000",
"width": 10
}
}
}'
Copy
{
"status": "created",
"message": "project created successfully",
"projectId": "667bbc6973e392d3f7f6f620"
}
Assistant
Responses are generated using AI and may contain mistakes.