GET /api/versions.{format}
This method returns user's api usage statistics
Name | Value | Name | Value |
Request Protocol | GET | Requires API Key | No |
Method ID | 1109 | Enabled | Yes |
Service Name | api | Service ID | 223 |
Information Steward | UW OpenData | Data Type | Direct DB Connection |
Update Frequency | Every request (live) | Cache Time | 0 seconds |
- Calling this method does not affect usage
- Any value can be
null
GET /api/versions.{format}
Parameter | Type | Required | Description |
format | input | yes | The format of the output |
key | filter | yes | Your API key |
callback | filter | no | JSONP callback format |
Output Formats
- json
- xml
GET /api/versions.{format}
- https://api.uwaterloo.ca/v2/api/versions.json
- https://api.uwaterloo.ca/v2/api/versions.xml
- https://api.uwaterloo.ca/v2/api/versions.json?callback=myResponse
Field Name | Type | Value Description |
version | float | API version number |
release_date | string | Y-m-d date for version release |
Any value can be null
{
"meta":{
"requests":86,
"timestamp":1381935303,
"status":200,
"message":"Request successful",
"method_id":1109,
"version":2.07,
"method":{
}
},
"data":[
{
"version":2.07,
"release_date":"2013-10-15"
},
{
"version":2.05,
"release_date":"2013-06-06"
},
{
"version":2.03,
"release_date":"2013-05-20"
},
{
"version":2.01,
"release_date":"2013-05-01"
}
]
}