Skip to main content

List updates

Get the update dates for a project.

Request

GET or POST https://api.wattspeed.com/v1/updates

Headers
Authorization  string required

Your API token.

Parameters
url  string required

The project's URL - should be URL encoded.


device  string 

Use this to filter by device.
Allowed values: mobile, desktop.


location  array of strings 

Use this to filter by location. When passing multiple locations, include each location in a different parameter using the same name. Example: location=s_carolina&location=tokyo.
Allowed values: s_carolina, los_angeles, frankfurt, london, tokyo, sao_paulo.

Example request

GET

https://api.wattspeed.com/v1/updates?url=https://wattspeed.com

POST

{
"url": "https://wattspeed.com"
}

Responses

Dates are listed in ascending order.

{
"desktop": {
"2022-04-18T00:37:34": [
"s_carolina",
"london"
],
"2022-05-16T00:42:42": [
"los_angeles"
]
},
"mobile": {
"2022-04-11T00:45:43": [
"frankfurt"
],
"2022-04-25T00:48:53": [
"tokyo",
"sao_paulo"
]
}
}