JSON Feed

The default Feed format is a JSON representation of available versions in a channel.

If your app uses Semantic Versioning 2.0, releases in the feed are ordered by their version number.

URL Schema

JSON feeds can be retrieved with the following URL schema:
https://feeds.dblsqd.com/:app_token/:channel/:os/:arch/

Query Parameters

The following parameters can be appended to the feed URL:

  • t - file types to be included in the feed. Defaults to standalone

Example Feed

Here is an example JSON feed provided by DBLSQD:

{
   "app_name":"my-app",
   "releases":[
      {
         "version":"1.0.0",
         "changelog":"Here goes the changelog.",
         "download":{
            "url":"https://example.org/dl/my-app-1.0.0.dmg",
            "size":1048576,
            "md5":"b6d8[…]3e2c",
            "sha1":"3b71[…]b5a3",
            "sha256":"30e1[…]fcb58",
            "sparkle_signature":"6dc2[…]750a",
            "signature":"a567[…]3915"
         }
      }
   ],
}