Skip to content

Versioning

Onur Akpolat edited this page Oct 18, 2016 · 1 revision

Current Version

The current version of the API is 0.4 and comes right after the base URL.

https://api.tapglue.com/0.4/

When we make backwards-incompatible changes to the API, we release new numbered version.

To retrieve information about the status about all versions our API supports you can GET the versions endpoint.

As shown in the example we'll return information about all versions of our API.

Versions endpoint

curl https://api.tapglue.com/versions

{
  "versions": {
    "0.1": {
      "version": "0.1",
      "status": "disabled"
    },
    "0.2": {
      "version": "0.2",
      "status": "disabled"
    },
    "0.3": {
      "version": "0.3",
      "status": "deprecated"
    },
    "0.4": {
      "version": "0.4",
      "status": "current"
    }
  },
  "revision": "a9cd613345f64e10044d6d706f54eb21a8ca2b15"
}
Clone this wiki locally