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

# List crawled pages

> Returns detailed information about each processed page in a crawl job



## OpenAPI

````yaml https://api.askmy.biz/openapi get /crawl/pages
openapi: 3.0.0
info:
  title: AskMyBiz API
  version: 1.0.0
  license:
    name: Private
    url: https://askmy.biz
  description: >
    API for initiating web crawls, storing content as embeddings, and performing
    vector queries

    for Q&A and structured data extraction.
servers:
  - url: https://api.askmy.biz
security:
  - ApiKeyAuth: []
paths:
  /crawl/pages:
    get:
      summary: List crawled pages
      description: Returns detailed information about each processed page in a crawl job
      operationId: getCrawledPages
      parameters:
        - name: job_id
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Crawled pages retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CrawledPages'
components:
  schemas:
    CrawledPages:
      type: object
      properties:
        job_id:
          type: string
          description: The job ID used to fetch the pages
        pages:
          type: array
          items:
            type: object
            properties:
              job_id:
                type: string
                description: ID of the crawl job this page belongs to
              namespace:
                type: string
                description: Namespace identifier for the crawl
              url:
                type: string
                description: URL of the crawled page
              title:
                type: string
                description: Title of the page
              content:
                type: string
                description: Main content of the page
              metadata:
                type: object
                description: Additional metadata about the page
              created_at:
                type: string
                format: date-time
                description: When the page was first crawled
              updated_at:
                type: string
                format: date-time
                description: When the page was last updated
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication

````