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

# Get Crawler Job Page

> Gets one scraped page including the heavy page payload using the V3 API.

## Overview

Returns a single scraped page plus the stored markdown and HTML payload when available.

## Useful For

* Page preview screens
* Content export pipelines
* KB import review
* Debugging page-specific scrape output

<Note>
  This endpoint is page-focused. Use the job endpoints for overall crawl status and pagination.
</Note>


## OpenAPI

````yaml GET /workspaces/{workspaceId}/crawler/jobs/{jobId}/pages/{pageId}
openapi: 3.0.3
info:
  title: Convocore OpenAPI
  description: Full API reference for Convocore
  version: 1.0.4
servers:
  - url: https://eu-gcp-api.vg-stuff.com/v3
    description: EU Node.js API server
  - url: https://na-gcp-api.vg-stuff.com/v3
    description: NA Node.js API server
security: []
paths:
  /workspaces/{workspaceId}/crawler/jobs/{jobId}/pages/{pageId}:
    get:
      tags:
        - Crawler
      summary: Get crawler job page
      description: >-
        Returns one scraped page including the heavy markdown/html payload when
        available. Crawler jobs are immutable after submission and cannot be
        updated.
      operationId: getCrawlerJobPage
      parameters:
        - name: workspaceId
          in: path
          required: true
          schema:
            type: string
        - name: jobId
          in: path
          required: true
          schema:
            type: string
        - name: pageId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      page:
                        type: object
                        properties:
                          id:
                            type: string
                          url:
                            type: string
                          urlHash:
                            type: string
                          title:
                            type: string
                          description:
                            type: string
                          scrapedAt:
                            type: number
                          imageUrl:
                            type: string
                          userId:
                            type: string
                          mdCharCount:
                            type: number
                          htmlCharCount:
                            type: number
                          failed:
                            type: boolean
                        required:
                          - id
                          - url
                          - urlHash
                          - title
                          - description
                          - scrapedAt
                          - imageUrl
                          - userId
                          - mdCharCount
                          - htmlCharCount
                          - failed
                        additionalProperties: false
                        nullable: true
                      content:
                        type: object
                        properties:
                          urlScraped:
                            type: string
                          urlHash:
                            type: string
                          scrapeResponse:
                            type: object
                            properties:
                              err: {}
                              metadata:
                                type: object
                                properties:
                                  title:
                                    type: string
                                  description:
                                    type: string
                                  ogImage:
                                    type: string
                                  favicon:
                                    type: string
                                    nullable: true
                                required:
                                  - title
                                  - description
                                  - ogImage
                                additionalProperties: false
                              urlScraped:
                                type: string
                              urlsDiscovered:
                                type: array
                                items:
                                  type: string
                              markdown:
                                type: string
                              html:
                                type: string
                            required:
                              - metadata
                              - urlScraped
                              - urlsDiscovered
                              - markdown
                              - html
                            additionalProperties: false
                        required:
                          - urlScraped
                          - urlHash
                          - scrapeResponse
                        additionalProperties: false
                        nullable: true
                    required:
                      - page
                      - content
                    additionalProperties: false
                required:
                  - success
                  - message
                  - data
                additionalProperties: false
        default:
          $ref: '#/components/responses/error'
      security:
        - Authorization: []
components:
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  type: object
                  properties:
                    message:
                      type: string
                  required:
                    - message
                  additionalProperties: false
            required:
              - message
              - code
            additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer

````