Access your public changelog via RSS feed or JSON API.Replace your-org with your organization slug.
Subscribe to changelog updates using any RSS reader.
https://your-org.votiq.io/changelog/feed.xml
Fetch with curl:
curl -s "https://your-org.votiq.io/changelog/feed.xml"
Programmatic access to changelog entries in JSON format.
https://your-org.votiq.io/changelog/feed.json
Example response:
{
"version": "https://jsonfeed.org/version/1.1",
"title": "Changelog",
"home_page_url": "https://your-org.votiq.io/changelog",
"feed_url": "https://your-org.votiq.io/changelog/feed.json",
"items": [
{
"id": "clx123...",
"title": "New feature: Dark mode support",
"content_html": "<p>We've added dark mode...</p>",
"date_published": "2025-01-15T12:00:00Z",
"tags": ["feature", "ui"]
}
]
}Query changelog entries programmatically via the Votiq API.
List changelog entries:
curl -s "https://app.votiq.io/api/v1/changelogs" \ -H "Authorization: Bearer vtq_live_xxxxx"
pagePage number (default: 1)limitItems per page (default: 20, max: 100)Fetch in JavaScript:
const response = await fetch("https://your-org.votiq.io/changelog/feed.json");
const feed = await response.json();
feed.items.forEach((entry) => {
console.log(entry.title, entry.date_published);
});Embed in your app:
<iframe src="https://your-org.votiq.io/changelog" style="width: 100%; height: 600px; border: none;" title="Changelog" ></iframe>