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

API

Mar 18, 2025

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.

Feb 10, 2024

Today we added a new endpoint to our API. It is now possible to delete subscribers. See the available API endpoints for further information.

We also plan to implement an endpoint to import articles, but it's not yet decided whether or not the current editor will be replaced by something else. It's an important decision, as the data structure differs and we don't want to implement the endpoint before we haven't explored more options.