Retrieve all Audit Reports
Provides a compiled list of your Audits, ordered chronologically by their creation date. The latest audit created will be presented at the top of the list.
GET /v1/audit/data
curl \
-X GET https://api.auditzy.com/v1/audit/data \
-H "X-ADZ-KEY: $API_KEY"
Response examples (200)
{
"data": [
{
"url": "https://auditzy.com",
"device": "Macbook Air 2020 (1440 x 900)",
"auditId": "021277ec-6c3-ef04a-a07-64a30cba02aa",
"labData": {
"si": 1367,
"cls": 0.01,
"fcp": 1232,
"lcp": 1245,
"pwa": 85,
"seo": 90,
"tbt": 39,
"tti": 1458,
"performance": 96,
"accessibility": 91,
"bestPractices": 92
},
"network": "5G (67 Mbps/67 Mbps, 10ms TCP RTT)",
"location": "Mumbai, India",
"createdAt": "2023-10-13T05:28:31.022Z",
"fieldData": {
"cls": 0.01,
"fcp": 1232,
"fid": 1232,
"inp": 396,
"lcp": 1245,
"ttfb": 1367
}
},
"{...}",
"{...}"
],
"total": 3,
"status": "SUCCESS"
}
Response examples (404)
{
"status": "FAILURE",
"message": "Resource Not Found"
}