Does Apple Developer API with available OS list exist?

Hi,


I need to have always up-to-date information about iOS, tvOS and macOS available versions (release and beta). It would be really nice to have related download links also in it.


So my question is: does Apple Developer API returning information about all OS versions exist? I would love JSON like:


{
    "iOS": [
        { "name":"12.0", "beta":"true", "link":"download_link" },
        { "name":"11.2", "beta":"false", "link":"download_link"] }
    ],
    "tvOS": [
        { "name":"12.0", "beta":"true", "link":"download_link" },
        { "name":"11.2", "beta":"false", "link":"download_link"] }
    ]
}


Thanks in advance for your help!