Get Recent Deployments
curl --request GET \
--url https://api.vertracloud.app/v1/apps/{app_id}/deploysimport requests
url = "https://api.vertracloud.app/v1/apps/{app_id}/deploys"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.vertracloud.app/v1/apps/{app_id}/deploys', 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://api.vertracloud.app/v1/apps/{app_id}/deploys",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.vertracloud.app/v1/apps/{app_id}/deploys"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vertracloud.app/v1/apps/{app_id}/deploys")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vertracloud.app/v1/apps/{app_id}/deploys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"response": [
{
"app_id": "123",
"commit_id": "abc123",
"message": "Fix deployment bug",
"pusher": "user1",
"branch": "main",
"created_at": "2026-03-14T20:00:00.000Z"
}
]
}
Deploys
Get Recent Deployments
Retrieves the 20 most recent deployments for a specific application.
GET
/
v1
/
apps
/
{app_id}
/
deploys
Get Recent Deployments
curl --request GET \
--url https://api.vertracloud.app/v1/apps/{app_id}/deploysimport requests
url = "https://api.vertracloud.app/v1/apps/{app_id}/deploys"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.vertracloud.app/v1/apps/{app_id}/deploys', 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://api.vertracloud.app/v1/apps/{app_id}/deploys",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.vertracloud.app/v1/apps/{app_id}/deploys"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vertracloud.app/v1/apps/{app_id}/deploys")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vertracloud.app/v1/apps/{app_id}/deploys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"response": [
{
"app_id": "123",
"commit_id": "abc123",
"message": "Fix deployment bug",
"pusher": "user1",
"branch": "main",
"created_at": "2026-03-14T20:00:00.000Z"
}
]
}
The ID of the application whose recent deployments will be retrieved.
Response
An array of deployment objects.
Show Toggle object
Show Toggle object
{
"response": [
{
"app_id": "123",
"commit_id": "abc123",
"message": "Fix deployment bug",
"pusher": "user1",
"branch": "main",
"created_at": "2026-03-14T20:00:00.000Z"
}
]
}
Error Responses
Possible error codes:
UNAUTHORIZED: User is not authenticated or lacks permissions.INTEGRATION_NOT_FOUND: Application or deployments not found.
A descriptive message providing additional details about the error.
{
"code": "INTEGRATION_NOT_FOUND"
}
⌘I