> ## Documentation Index
> Fetch the complete documentation index at: https://docs.erdo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ListPageReviewsAPI mirrors erdo_list_page_reviews: past reviews newest first


> as lean summaries (id, status, URLs, goal, scores) — filter by url to track one page over time. The full findings stay on GET /v1/page-reviews/:reviewID.




## OpenAPI

````yaml /api/openapi.json get /v1/page-reviews
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, and experiments. Authenticate with
    a Bearer API key (erdo_api_...) or scoped token (erdo_token_...).
  version: '2026-07-25'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/page-reviews:
    get:
      summary: >
        ListPageReviewsAPI mirrors erdo_list_page_reviews: past reviews newest
        first
      description: >
        as lean summaries (id, status, URLs, goal, scores) — filter by url to
        track one page over time. The full findings stay on GET
        /v1/page-reviews/:reviewID.
      operationId: GET:mcp.ListPageReviewsAPI
      parameters:
        - allowEmptyValue: true
          explode: true
          in: query
          name: url
          required: false
          schema:
            type: string
          style: form
        - allowEmptyValue: true
          explode: true
          in: query
          name: limit
          required: false
          schema:
            format: int64
            type: integer
          style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  reviews:
                    items:
                      $ref: '#/components/schemas/types.PageReviewSummary'
                    type: array
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  schemas:
    types.PageReviewSummary:
      description: >
        track a page's score over time WITHOUT the full findings, which stay
        behind GET-by-id. Score is the overall (report-level) score once the
        review is ready; PageScores gives each page's URL + score. Both are
        absent until a report lands.
      properties:
        created_at:
          format: date-time
          type: string
        goal:
          type: string
        id:
          format: uuid
          type: string
        input_urls:
          items:
            type: string
          type: array
        page_scores:
          items:
            $ref: '#/components/schemas/types.PageReviewPageScore'
          type: array
        score:
          format: int64
          type: integer
        status:
          type: string
        updated_at:
          format: date-time
          type: string
      title: >
        PageReviewSummary is the lean list-row shape — enough to show a review
        and
      type: object
    types.PageReviewPageScore:
      description: |
        summary. Score is nil for a page the critic could not review.
      properties:
        score:
          format: int64
          type: integer
        url:
          type: string
      title: |
        PageReviewPageScore is one page's URL and its conversion score in a list
      type: object
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````