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

NameTypeDescription
jobId requiredstringThe crawl job id returned by Start a crawl (POST /api/v1/crawl). Path parameter.

Request

Response

200 · application/json
  1. {
  2. "jobId": "crw_7Hk29fQ",
  3. "startUrl": "https://example.com",
  4. "host": "example.com",
  5. "status": "done",
  6. "maxPages": 50,
  7. "createdAt": "2026-06-02T13:24:49.414Z",
  8. "finishedAt": "2026-06-02T13:24:52.055Z",
  9. "orphanCount": 2,
  10. "items": [
  11. { "url": "https://example.com/old-page", "statusCode": 200, "depth": null, "outlinks": 3 }
  12. ]
  13. }

Response fields

FieldTypeDescription
orphanCountnumberNumber of orphan pages found (pages with zero internal inlinks).
items[].urlstringThe orphan page's URL.
items[].statusCodenumberHTTP status returned for the page.
items[].depthnumberClicks from the start page; null = unreachable from the start page.
items[].outlinksnumberInternal links leaving the page.

See Errors for status codes.