Orphan pages
GET /api/v1/crawl/{jobId}/orphans
Crawled pages with ZERO internal inlinks — pages no other page links to (a classic, high-impact SEO finding).
Path & query
| Name | Type | Description |
|---|---|---|
jobId required | string | The crawl job id returned by Start a crawl (POST /api/v1/crawl). Path parameter. |
Request
Response
200 · application/json
- {
- "jobId": "crw_7Hk29fQ",
- "startUrl": "https://example.com",
- "host": "example.com",
- "status": "done",
- "maxPages": 50,
- "createdAt": "2026-06-02T13:24:49.414Z",
- "finishedAt": "2026-06-02T13:24:52.055Z",
- "orphanCount": 2,
- "items": [
- { "url": "https://example.com/old-page", "statusCode": 200, "depth": null, "outlinks": 3 }
- ]
- }
Response fields
| Field | Type | Description |
|---|---|---|
orphanCount | number | Number of orphan pages found (pages with zero internal inlinks). |
items[].url | string | The orphan page's URL. |
items[].statusCode | number | HTTP status returned for the page. |
items[].depth | number | Clicks from the start page; null = unreachable from the start page. |
items[].outlinks | number | Internal links leaving the page. |
See Errors for status codes.