Duplicate tags

GET /api/v1/crawl/{id}/duplicate-tags

Pages across the crawl that share an identical title, meta description, or H1, grouped by the duplicated value — so you can fix the worst offenders first.

Path & query

NameTypeDescription
jobId requiredstringThe crawl job id (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. "duplicateTitles": [
  10. {
  11. "value": "Home | Example",
  12. "count": 3,
  13. "urls": ["https://example.com/", "https://example.com/index", "https://example.com/home"]
  14. }
  15. ],
  16. "duplicateMetaDescriptions": [],
  17. "duplicateH1s": []
  18. }

Response fields

FieldTypeDescription
duplicateTitles[]object[]Groups of pages that share the same title. Empty when none.
duplicateMetaDescriptions[]object[]Groups of pages that share the same meta description. Empty when none.
duplicateH1s[]object[]Groups of pages that share the same H1. Empty when none.
valuestringThe shared text for a group.
countintegerHow many pages share that value.
urls[]string[]The pages sharing the value (capped at 50).

See Errors for status codes.