> ## 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.

# ListPagesAPI mirrors the erdo_list_pages MCP tool.




## OpenAPI

````yaml /api/openapi.json get /v1/pages
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/pages:
    get:
      summary: |
        ListPagesAPI mirrors the erdo_list_pages MCP tool.
      operationId: GET:mcp.ListPagesAPI
      parameters:
        - allowEmptyValue: true
          explode: true
          in: query
          name: query
          required: false
          schema:
            type: string
          style: form
        - allowEmptyValue: true
          explode: true
          in: query
          name: created_after
          required: false
          schema:
            type: string
          style: form
        - allowEmptyValue: true
          explode: true
          in: query
          name: created_before
          required: false
          schema:
            type: string
          style: form
        - allowEmptyValue: true
          explode: true
          in: query
          name: limit
          required: false
          schema:
            format: int32
            maximum: 2147483647
            minimum: -2147483648
            type: integer
          style: form
        - allowEmptyValue: true
          explode: true
          in: query
          name: offset
          required: false
          schema:
            format: int32
            maximum: 2147483647
            minimum: -2147483648
            type: integer
          style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  pages:
                    items:
                      $ref: '#/components/schemas/mcp.PageSummary'
                    type: array
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  schemas:
    mcp.PageSummary:
      description: >
        browse surface needs to identify a page and open it. Soft-deleted pages
        never appear here (that is the point of delete: non-discoverability).
      properties:
        created_at:
          type: string
        id:
          type: string
        public:
          type: boolean
        public_url:
          type: string
        summary:
          type: string
        title:
          type: string
        url:
          description: |
            link, present only while Public is true.
          title: >
            URL is the authenticated editor view; PublicURL is the
            visitor-facing share
          type: string
      title: >
        PageSummary is a lean list row — no HTML/JS/CSS body, just what a
        cleanup or
      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_...).

````