Welcome to our changelog, sort of our "demo" for Releases. This current theme is called "Commit", more themes are available. Subscribe to not miss an update.

Subscribe to updates
© 2025 Releases Changelog
Mar 18, 2025

API updates

Today we added some minor updates to the API.

Add limit parameter

It is now possible to limit the number of entries when using the GET endpoint https://releasesapp.com/api/entries to fetch entries.

Simply add ?limit=X to the endpoint to fetch a limited number of entries.

Create entry

We also added a new endpoint that allows you to create entries via the API. The following parameters are allowed:

{
"title": "The title of the entry",
"slug": "the-slug-of-the-entry",
"is_published": true,
"publish_at": "2025-03-19",
"notify_subscribers": false,
"html": "<b>Hello there</b>"
}

It's currently not possible to assign tags or attach files via the API. Head over to the API Endpoints help center article to learn more.