Skip to main content
GET
Get Crawl Job Details
Returns the complete record for a crawl job: the configuration you submitted, current status, token usage, and credit cost. It does not return the extracted page data. For the actual content from each page, use GET /crawl//pages.

When to Use This Endpoint

  • Inspect the instructions and options that were used for a job
  • Check token and credit costs for accounting or reporting
  • Confirm job configuration before re-running extraction with POST /crawl//extract

Example Request

Response Fields

Job configuration

Status and stats

Example Response

For the actual extracted content from each page, call GET /crawl//pages.

Authorizations

Authorization
string
header
required

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

Path Parameters

jobId
string
required

Response

Job details

id
string
base_url
string
crawl_instruction
string
transform_instruction
string | null
output_schema
object | null

The JSON Schema used for structured extraction, if one was provided.

max_pages
integer
max_depth
integer | null
include_paths
string[] | null
exclude_paths
string[] | null
allow_subdomains
boolean
crawl_entire_domain
boolean
ignore_query_params
boolean
webhook_url
string | null
pages_crawled
integer
status
enum<string>
Available options:
waiting,
active,
completed,
failed,
cancelled
created_at
string<date-time>
updated_at
string<date-time>
input_tokens
number | null
output_tokens
number | null
credits_used
number | null