Skip to main content
GET
/
workspaces
/
{workspaceId}
/
crawler
/
jobs
/
{jobId}
/
pages
/
{pageId}
Get crawler job page
curl --request GET \
  --url https://eu-gcp-api.vg-stuff.com/v3/workspaces/{workspaceId}/crawler/jobs/{jobId}/pages/{pageId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "page": {
      "id": "<string>",
      "url": "<string>",
      "urlHash": "<string>",
      "title": "<string>",
      "description": "<string>",
      "scrapedAt": 123,
      "imageUrl": "<string>",
      "userId": "<string>",
      "mdCharCount": 123,
      "htmlCharCount": 123,
      "failed": true
    },
    "content": {
      "urlScraped": "<string>",
      "urlHash": "<string>",
      "scrapeResponse": {
        "metadata": {
          "title": "<string>",
          "description": "<string>",
          "ogImage": "<string>",
          "favicon": "<string>"
        },
        "urlScraped": "<string>",
        "urlsDiscovered": [
          "<string>"
        ],
        "markdown": "<string>",
        "html": "<string>",
        "err": "<unknown>"
      }
    }
  }
}

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
This endpoint is page-focused. Use the job endpoints for overall crawl status and pagination.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspaceId
string
required
jobId
string
required
pageId
string
required

Response

Successful response

success
boolean
required
message
string
required
data
object
required