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

# List page evaluations for a workspace



## OpenAPI

````yaml /openapi.json get /api/v1/workspaces/{workspace}/page-evaluation
openapi: 3.0.3
info:
  title: ai-cmo.dev Services API
  version: 1.0.0
servers: []
security: []
tags:
  - name: Meta
    description: Health and the generated API description.
  - name: Auth
    description: Signup, login, sessions and email verification.
  - name: Device authorization
    description: Browser-approved API key provisioning for agents and the MCP server.
  - name: Setup tokens
    description: Single-use tokens that bootstrap a connector or agent.
  - name: MCP
    description: The canonical MCP install prompt.
  - name: Workspaces
    description: Workspace creation, settings, profile and competitors.
  - name: API keys
    description: 'Key lifecycle: create, deliver, acknowledge, rotate, revoke.'
  - name: Connections
    description: Connector status, tests, configuration and credentials.
  - name: Runs
    description: Measurement runs and their jobs.
  - name: Research
    description: The five-stage research pipeline.
  - name: Prompts
    description: The measurement prompt set.
  - name: Recommendations
    description: Recommendation board and guarded lifecycle transitions.
  - name: Reports
    description: Stable report identities and the report catalog.
  - name: Scores & metrics
    description: GEO score, scoreboard, metrics, timeseries and SEO.
  - name: Credits & billing
    description: Micro-USD credits, top-ups and Stripe checkout.
  - name: Team
    description: Members, roles and invitations.
  - name: Chat
    description: The workspace assistant (SSE) and its threads.
  - name: Webhooks
    description: Inbound webhooks.
paths:
  /api/v1/workspaces/{workspace}/page-evaluation:
    get:
      tags:
        - Reports
      summary: List page evaluations for a workspace
      operationId: listPageEvaluations
      parameters:
        - name: workspace
          in: path
          required: true
          schema:
            type: string
            pattern: ^[a-z0-9-]+$
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageEvaluationList'
      security:
        - cookieAuth: []
        - bearerAuth:
            - reports:read
components:
  schemas:
    PageEvaluationList:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
          workspace:
            type: string
          url:
            type: string
          fetchedAt:
            type: string
          scores:
            type: object
            properties:
              performance:
                type: number
              accessibility:
                type: number
              bestPractices:
                type: number
              seo:
                type: number
            required:
              - performance
              - accessibility
              - bestPractices
              - seo
            additionalProperties: false
          metrics:
            type: object
            properties:
              lcp:
                type: number
                nullable: true
              cls:
                type: number
                nullable: true
              tbt:
                type: number
                nullable: true
              fcp:
                type: number
                nullable: true
            required:
              - lcp
              - cls
              - tbt
              - fcp
            additionalProperties: false
          checks:
            type: object
            properties:
              robotsTxt:
                type: object
                properties:
                  passed:
                    type: boolean
                  value:
                    type: string
                    nullable: true
                  suggestion:
                    type: string
                    nullable: true
                required:
                  - passed
                  - value
                  - suggestion
                additionalProperties: false
              sitemapXml: be134f56-3ea1-41ed-8ba3-c50c74efbdef
              llmsTxt: df2948a4-1106-42d9-89d7-b8dccf9cad3a
              metaRobots: f171930c-b472-476e-9eb2-f4bcf18de17d
              canonical: 0baad557-43f9-48bc-9ef1-9aaec56f76d6
              title: d62ea88a-0428-414f-b002-f838e88ea600
              description: 53d6f85c-a80a-4964-9932-d3bb2741216f
              https: f66493b3-45a2-4cd5-89b8-2f2957f49dea
              viewport: aac107ee-829e-45c2-96d0-64218b8b25e4
            required:
              - robotsTxt
              - sitemapXml
              - llmsTxt
              - metaRobots
              - canonical
              - title
              - description
              - https
              - viewport
            additionalProperties: false
        required:
          - id
          - workspace
          - url
          - fetchedAt
          - scores
          - metrics
          - checks
        additionalProperties: false
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: geo.session
      description: Signed HttpOnly browser session cookie
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: gp_live_<43 base64url characters>
      description: Workspace-bound machine API key

````