About this endpoint
What it does
Retrieves the audit report for a specific site audit identified by audit_id. The response returns a JSON object containing report metadata, overall counts, domain properties, and a list of report sections.
Query Parameter(s)
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| audit_id | Integer | Yes | Identifier of the audit to retrieve. |
Response
Returns a JSON object with report metadata and summary fields, including version (string), sections (array), audit_time (string), is_finished (boolean), total_pages (integer), domain_props (object), total_errors (integer), total_passed (integer), score_percent (integer), total_notices (integer), and total_warnings (integer).
| Attribute | Type | Mandatory | Description |
|---|---|---|---|
| version | String | No | Report version string. |
| sections | Object Array | No | Array of report section objects. Each section can include uid (string), name (string), and props (object) with additional nested properties. For props entries, each item may include code (string), name (string), value (integer), and status (ENUM: error, warning, notice, passed). |
| audit_time | String | No | Audit time as a string. |
| is_finished | Boolean | No | Whether the audit is finished. |
| total_pages | Integer | No | Total number of pages in the audit. |
| domain_props | Object | No | Domain-level properties. Includes expdate (string, nullable), backlinks (string), and index_google (string). |
| total_errors | Integer | No | Total number of errors in the report. |
| total_passed | Integer | No | Total number of passed items in the report. |
| score_percent | Integer | No | Score percentage. |
| total_notices | Integer | No | Total number of notices in the report. |
| total_warnings | Integer | No | Total number of warnings in the report. |