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.