Get Project
curl --request GET \
--url https://mango.quickreel.io/api/v2/projects/{projectId} \
--header 'x-api-key: <api-key>'import requests
url = "https://mango.quickreel.io/api/v2/projects/{projectId}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://mango.quickreel.io/api/v2/projects/{projectId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mango.quickreel.io/api/v2/projects/{projectId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mango.quickreel.io/api/v2/projects/{projectId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://mango.quickreel.io/api/v2/projects/{projectId}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://mango.quickreel.io/api/v2/projects/{projectId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"projectId": "676409ad10ded0f9fc89d224",
"status": "completed",
"createdAt": "2024-12-19T11:55:25.602Z",
"completedAt": "2024-12-19T14:22:35.533Z",
"error": null,
"outputs": [
{
"id": "67640a41df9247bc89de7813",
"videoUrl": "https://qr-be-api-upload.s3.us-east-1.amazonaws.com/67618d230847a22a7550faf9/676409ad10ded0f9fc89d224/67640a41df9247bc89de7813_final_hook.mp4",
"thumbnailUrl": "https://qr-be-api-upload.s3.us-east-1.amazonaws.com/67618d230847a22a7550faf9/676409ad10ded0f9fc89d224/67640a41df9247bc89de7813_trim_thumbnail.jpg",
"info": {
"title": "The Fame Game: Family vs Fortune! 💰🏆",
"caption": "💥 In a world where fame reigns supreme, what would you choose? 💔 Family or 100 Crores? Let's dive into the glitzy side of fame as we pick between loved ones and riches! 🌟✨ #Fame #Choices #Bollywood #Celebrities #Viral",
"viralityScore": 88,
"viralityScoreReason": "The relatable theme of choosing between family and wealth taps into a universal dilemma, increasing its appeal. The celebrity context adds intrigue, likely to resonate with fans and attract shares.",
"tags": [
"fame",
"family",
"bollywood",
"choices",
"viral"
],
"suitablePlatforms": [
"x",
"youtube"
]
}
}
]
}{
"error": {
"message": "Bad Request: Missing required fields"
}
}{
"error": {
"message": "Unauthorized: API key invalid"
}
}{
"error": {
"message": "Project not found."
}
}{
"error": {
"message": "Too Many Requests: Please slow down your request rate."
}
}{
"error": {
"message": "Internal Server Error: Please try again later or contact support"
}
}Get Started
Project
Base URL: https://mango.quickreel.io/api/v2
GET
/
projects
/
{projectId}
Get Project
curl --request GET \
--url https://mango.quickreel.io/api/v2/projects/{projectId} \
--header 'x-api-key: <api-key>'import requests
url = "https://mango.quickreel.io/api/v2/projects/{projectId}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://mango.quickreel.io/api/v2/projects/{projectId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mango.quickreel.io/api/v2/projects/{projectId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mango.quickreel.io/api/v2/projects/{projectId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://mango.quickreel.io/api/v2/projects/{projectId}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://mango.quickreel.io/api/v2/projects/{projectId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"projectId": "676409ad10ded0f9fc89d224",
"status": "completed",
"createdAt": "2024-12-19T11:55:25.602Z",
"completedAt": "2024-12-19T14:22:35.533Z",
"error": null,
"outputs": [
{
"id": "67640a41df9247bc89de7813",
"videoUrl": "https://qr-be-api-upload.s3.us-east-1.amazonaws.com/67618d230847a22a7550faf9/676409ad10ded0f9fc89d224/67640a41df9247bc89de7813_final_hook.mp4",
"thumbnailUrl": "https://qr-be-api-upload.s3.us-east-1.amazonaws.com/67618d230847a22a7550faf9/676409ad10ded0f9fc89d224/67640a41df9247bc89de7813_trim_thumbnail.jpg",
"info": {
"title": "The Fame Game: Family vs Fortune! 💰🏆",
"caption": "💥 In a world where fame reigns supreme, what would you choose? 💔 Family or 100 Crores? Let's dive into the glitzy side of fame as we pick between loved ones and riches! 🌟✨ #Fame #Choices #Bollywood #Celebrities #Viral",
"viralityScore": 88,
"viralityScoreReason": "The relatable theme of choosing between family and wealth taps into a universal dilemma, increasing its appeal. The celebrity context adds intrigue, likely to resonate with fans and attract shares.",
"tags": [
"fame",
"family",
"bollywood",
"choices",
"viral"
],
"suitablePlatforms": [
"x",
"youtube"
]
}
}
]
}{
"error": {
"message": "Bad Request: Missing required fields"
}
}{
"error": {
"message": "Unauthorized: API key invalid"
}
}{
"error": {
"message": "Project not found."
}
}{
"error": {
"message": "Too Many Requests: Please slow down your request rate."
}
}{
"error": {
"message": "Internal Server Error: Please try again later or contact support"
}
}Authorizations
Path Parameters
Project ID
Response
Request created successfully
Project ID
Example:
"676409ad10ded0f9fc89d224"
Status of the project
Example:
"completed"
Creation timestamp
Example:
"2024-12-19T11:55:25.602Z"
Completion timestamp
Example:
"2024-12-19T14:22:35.533Z"
Error message if any
Example:
null
Show child attributes
Show child attributes
⌘I
