crawl_status
Advance a crawl job by up to a specified number of pages and return its current status, completion stats, errors, and optional page list.
Instructions
Advance a crawl job by up to advance pages (default 5, env OC_CRAWL_ADVANCE_DEFAULT) and return current state. advance: 0 is read-only and performs no fetching. Returns { status, completed, total, errors, pages?, pagesOmitted?, startedAt, finishedAt? }. Pages array is capped at OC_CRAWL_STATUS_MAX_PAGES (default 200).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jobId | Yes | REQUIRED Job id returned by crawl_start. | |
| advance | No | Max pages to fetch in this call. Default OC_CRAWL_ADVANCE_DEFAULT (5). Use 0 for read-only. | |
| includePages | No | Include `pages` in the response. Default false. |