About this endpoint
What it does
Performs a technical performance audit for the webpage at the supplied url and returns an audit summary for that URL. The response includes audit details, a list of issues, and an overall score.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | Yes | The webpage URL to audit. |
Response
Returns a JSON object with url as a string, audit as an object, issues as a string array, and overall_score as an integer. The audit object contains canonical, robots_txt, ssl_status, and performance_score.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | No | The audited webpage URL. |
| audit | Object | No | Audit details object containing canonical, robots_txt, ssl_status, and performance_score. |
| issues | String Array | No | A list of issues found during the audit. |
| overall_score | Integer | No | The overall performance score. |
| audit.canonical | String | No | Indicates whether a canonical tag is present. |
| audit.robots_txt | String | No | Indicates whether robots.txt was found. |
| audit.ssl_status | String | No | The SSL status. |
| audit.performance_score | Integer | No | The performance score from the audit. |