List Published Changelogs
curl --request GET \
--url https://api.example.com/changelogsimport requests
url = "https://api.example.com/changelogs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/changelogs', 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.example.com/changelogs",
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.example.com/changelogs"
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.example.com/changelogs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/changelogs")
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_bodyChangelog
List Published Changelogs
List all published changelogs, newest first
GET
/
changelogs
List Published Changelogs
curl --request GET \
--url https://api.example.com/changelogsimport requests
url = "https://api.example.com/changelogs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/changelogs', 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.example.com/changelogs",
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.example.com/changelogs"
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.example.com/changelogs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/changelogs")
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_bodyReturns an array of all published changelogs, ordered by most recent first. This endpoint does not require authentication.
Request
curl -X GET "https://app.shipstar.ai/api/v1/changelogs"
const response = await fetch('https://app.shipstar.ai/api/v1/changelogs');
const changelogs = await response.json();
import requests
response = requests.get('https://app.shipstar.ai/api/v1/changelogs')
changelogs = response.json()
Response
Returns an array of changelog objects. Each changelog contains structured entries with categories, titles, and descriptions.Example Response
200
[
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"slug": "my-product-changelog-march-2025",
"content": "{\"title\": \"March 2025 Changelog\", \"entries\": [...]}",
"period_start": "2025-03-01T00:00:00Z",
"period_end": "2025-03-31T23:59:59Z",
"published_at": "2025-04-01T10:00:00Z",
"created_at": "2025-03-31T15:00:00Z"
}
]
Was this page helpful?
⌘I