About this endpoint
What it does
Performs a technical performance audit for a webpage URL and returns the audited URL, a structured audit summary, any issue strings, and an overall score.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | No | The webpage URL to audit. |
Response
Returns a JSON object with top-level url as a string, audit as an object, issues as a string array, and overall_score as an integer.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| url | String | No | The audited webpage URL. |
| audit | Object | No | Audit summary object containing technical checks. |
| audit.canonical | String | No | Indicates the canonical status. |
| audit.robots_txt | String | No | Indicates whether robots.txt was found. |
| audit.ssl_status | String | No | Indicates the SSL status. |
| audit.performance_score | Integer | No | Performance score returned by the audit. |
| issues | String Array | No | A list of issue strings identified during the audit. |
| overall_score | Integer | No | Overall score returned by the audit. |