Endpoint: version

Provides the current version number of the Aeris API.

Examples

The /[:endpoint]/[:action]? portion within the query template below can be exchanged with any of the examples. Also, please note you will need to input your client credentials in the [ID] and [SECRET] fields which can be found under the Apps section of the members area.

https://api.aerisapi.com/[:endpoint]/[:action]?client_id=[ID]&client_secret=[SECRET]

Returns the current Aeris API version information.
/version?

Response

The following is an example of what each object in the response will consist of. Depending on your requested action, the response may contain multiple instances of this object within an array.


{
    "success": true,
    "error": null,
    "response": {
        "version": {
            "api": "1.9.4",
            "library": "1.9.4"
        }
    }
}
								

Response Properties

The following properties will be provided in every response object:

version.api (string) The version number of the API.
version.library (string) The version number of the AerisWeather Library being used.

Last modified: August 19, 2021