An open API service indexing awesome lists of open source software.

https://github.com/trstringer/sql-server-versions

Web API and website for SQL Server version lookup
https://github.com/trstringer/sql-server-versions

Last synced: 5 months ago
JSON representation

Web API and website for SQL Server version lookup

Awesome Lists containing this project

README

          

## SQL Server Versions API and Website

###Description

The API serves as a way to consume SQL Server version information on builds, supportability, and other surrounding data. The website is the accompanying user interface for searching version data and other relevant operations.

###API Reference

**Version Search**

*Get all versions [GET]*
http://sqlserverversions.azurewebsites.net/api/version

*Get a single version [GET]*
http://sqlserverversions.azurewebsites.net/api/version/{major}/{minor}/{build}/{revision}

**Recent Versions and Supportability**

*Get the 5 most recent versions [GET]*
http://sqlserverversions.azurewebsites.net/api/recent

*Get a specified amount of recent versions [GET]*
http://sqlserverversions.azurewebsites.net/api/recent/{topcount}

*Get the most recent by major release [GET]*
http://sqlserverversions.azurewebsites.net/api/latest/{major}/{minor}

*Get the oldest supported versions by major release [GET]*
http://sqlserverversions.azurewebsites.net/api/oldestsupported/{major}/{minor}