---
title: "Get page audits"
method: GET
path: "/api/mcp/projects/{projectId}/audits"
tags: ["Audits & Issues"]
---

# Get page audits

`GET /api/mcp/projects/{projectId}/audits`

Latest page audit per page (SEO + AEO scores) plus summary.lastCompletedAt. Pass includeIssues=true to nest each page's open issues.

## Path parameters

- `projectId` string, uuid, required

## Query parameters

- `includeIssues` boolean

## Response `200`

Page audits.

- AuditsResponse
  - `project` ProjectRef, required
    - `id` string, uuid, required
    - `name` string, required
    - `domain` string, nullable, required
  - `summary` object, required
    - `totalPages` integer — Number of pages that have at least one completed audit (not all tracked pages).
    - `averageScores` object
      - `technical` number, nullable
      - `aeo` number, nullable
    - `lastCompletedAt` string, date-time, nullable
  - `audits` ProjectAuditEntry[], required
    - `id` string, uuid
    - `page` object
      - `id` string
      - `slug` string, nullable
      - `title` string, nullable
      - `type` string, nullable
      - `url` string
    - `scores` object
      - `technical` number, nullable
      - `aeo` number, nullable
      - `overall` number, nullable
    - `auditType` string, nullable
    - `completedAt` string, date-time, nullable
    - `error` string, nullable
    - `openIssueCount` integer — Present only when includeIssues=true.
    - `openIssues` AuditOpenIssue[] — Present only when includeIssues=true.
      - `id` string, uuid
      - `type` string, nullable
      - `title` string, nullable
      - `severity` string, nullable
      - `status` string, nullable
      - `description` string, nullable
      - `firstDetectedAt` string, date-time, nullable
      - `lastDetectedAt` string, date-time, nullable
      - `metadata` object — Issue-type-specific metadata.

## Other responses

- `401` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.
- `403` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.
- `404` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.
- `429` — Rate limited. Usually the per-API-key REST limit (600 requests/minute); on Google-backed endpoints it can also relay an upstream Google rate limit. `Retry-After` (seconds) is present when the limit was applied by Searchable's own rate limiter; it may be absent when an upstream provider rate-limits.
- `504` — Error response. `code` is the machine-readable reason — see the [error reference](/api/errors) for the full catalog and remediation per code.

---

[API](https://skmtc.net/searchable/apis/searchable-rest-api.md) · [All operations](https://skmtc.net/searchable/apis/searchable-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/searchable/searchable-rest-api/revisions/301b04e800ed/schema)
