pagespeed

Retrieve a pagespeed check

Returns a pagespeed check with the given id.

get/pagespeed/{test_id}

Path parameters

test_idstring required

Pagespeed check ID

Response

OK

Example response

{
  "data": {
    "id": "123",
    "name": "Example",
    "website_url": "https://www.example.com",
    "check_rate": 1800,
    "alert_bigger": 0,
    "alert_slower": 0,
    "alert_smaller": 0,
    "contact_groups": [
      "1",
      "2",
      "3"
    ],
    "latest_stats": {
      "loadtime": 209,
      "filesize": 160.513,
      "requests": 5,
      "has_issue": true,
      "latest_issue": "The Total Load Time of the Page (4841/ms) is longer than the alert\nthreshold of 0/ms"
    },
    "location": "PAGESPD-UK5",
    "paused": false
  }
}

Changes