The Releasebot JSON endpoint lets Pro users access their feed programmatically without worrying about API keys or credits.
What the endpoint returns
The JSON endpoint returns the 20 most recent releases from your personal feed, in reverse chronological order. It is the same content you see on your dashboard, but in a format you can consume programmatically.
Each release includes the product and vendor it belongs to, the release date, a formatted content summary, and a link back to the original source.
Endpoint
GET https://releasebot.io/api/feed/{your-user-id}.json
Find your full URL on the Alerts & Integrations page. The response is a JSON object with one field:
releases— an array of up to 20 release objects
Each release object contains:
id— the release IDslug— a URL-friendly identifierrelease_details— structured metadata about the releaserelease_date— the date the release was published (when available)created_at— the date Releasebot discovered the releaseformatted_content— a summary of the release in Markdownproduct— the product name, slug, and associated vendorsource— the original source URL
Sample response
You can view a live sample here: https://releasebot.io/api/feed/45b93d21-f8c4-4fb9-9564-5a1362540b3f.json
Need pagination or more control?
If you need to page through older releases or filter by date, the API has a /api/v1/feed endpoint that supports pagination, a configurable limit, and a before parameter. It uses your API key instead of your user ID.
Questions?
Reach out at [email protected].